fixing conflicts

This commit is contained in:
Land 2025-11-01 14:54:09 +00:00
parent b5a914db9f
commit 237e071b98

View file

@ -20,7 +20,7 @@ const colorScales = [
type ColorNames = keyof typeof colors
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
const isAmoledMode = useStorage('amoled-mode', true)
const isAmoledMode = useStorage('amoled-mode', false)
const colorOptions = Object.keys(colors).filter(
(key) => typeof colors[key as keyof typeof colors] === 'object'