Skip to content

Commit 78df9f3

Browse files
[autofix.ci] apply automated fixes
1 parent f4c6916 commit 78df9f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/components/Brand/Customize.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ const customLogoRef = useTemplateRef('customLogoRef')
1212
const activeAccentId = computed(() => customAccent.value ?? selectedAccentColor.value ?? 'sky')
1313
1414
// Use the palette matching the preview background, not the site theme
15-
const previewPalette = computed(() => customBgDark.value ? ACCENT_COLORS.dark : ACCENT_COLORS.light)
15+
const previewPalette = computed(() =>
16+
customBgDark.value ? ACCENT_COLORS.dark : ACCENT_COLORS.light,
17+
)
1618
1719
const activeAccentColor = computed(() => {
1820
return previewPalette.value[activeAccentId.value as AccentColorId] ?? previewPalette.value.sky

0 commit comments

Comments
 (0)