chore: format

This commit is contained in:
doprz
2025-11-06 20:06:59 -06:00
parent c2b43dc949
commit ea5d1e2b16
22 changed files with 611 additions and 638 deletions

View File

@@ -124,17 +124,15 @@ export default function CourseCellColorPicker({ defaultColor }: CourseCellColorP
<>
<Divider orientation='horizontal' size='100%' className='my-1' />
<div className='grid grid-cols-6 gap-1'>
{colorPatchColors
.get(selectedBaseColor)
?.map(shadeColor => (
<ColorPatch
key={shadeColor}
color={shadeColor}
isSelected={shadeColor === hexCodeWithHash}
handleSelectColorPatch={handleSelectColorPatch}
defaultColor={defaultColor}
/>
))}
{colorPatchColors.get(selectedBaseColor)?.map(shadeColor => (
<ColorPatch
key={shadeColor}
color={shadeColor}
isSelected={shadeColor === hexCodeWithHash}
handleSelectColorPatch={handleSelectColorPatch}
defaultColor={defaultColor}
/>
))}
</div>
</>
)}