FIX: Biome apply "unsafe" changes

This commit is contained in:
Nicolás Hatcher
2025-11-13 19:00:13 +01:00
committed by Nicolás Hatcher Andrés
parent 12342da649
commit 7e2fcec4a3

View File

@@ -173,8 +173,7 @@ const ColorPicker = ({
<RecentLabel>{t("color_picker.custom")}</RecentLabel>
<RecentColorsList>
{recentColors.current.length > 0 ? (
<>
{recentColors.current.map((recentColor) => (
recentColors.current.map((recentColor) => (
<ColorSwatch
key={recentColor}
$color={recentColor}
@@ -183,8 +182,7 @@ const ColorPicker = ({
handleColorSelect(recentColor);
}}
/>
))}
</>
))
) : (
<EmptyContainer />
)}