Skip to content

Commit

Permalink
fix: mobile themecolor
Browse files Browse the repository at this point in the history
  • Loading branch information
blinko-space committed Dec 31, 2024
1 parent eb7c3d6 commit 569287d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Common/Theme/ThemeColor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ThemeColor = observer(({ onChange, value = colors[0]?.background }:
backgroundImage: color.background.includes('gradient') ? color.background : 'none',
border: value === color.background ? '2px solid var(--foreground)' : 'none'
}}
onClick={() => onChange?.(color.background, color.foreground)}
onPress={() => onChange?.(color.background, color.foreground)}
/>
))}
</div>
Expand Down

0 comments on commit 569287d

Please sign in to comment.