Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Jan 28, 2025
1 parent 1db99da commit 26d2e10
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/variants/src/shared/RowPalettizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ export default function RowPalettizer({
Create color palette based on...
{Object.keys(currLayout[0] ?? [])
.filter(
f => f !== 'name' && f !== 'color' && f !== 'label' && f !== 'id',
f =>
f !== 'name' &&
f !== 'color' &&
f !== 'label' &&
f !== 'id' &&
f !== 'HP',
)
.map(r => (
<Button
Expand Down

0 comments on commit 26d2e10

Please sign in to comment.