chore: format code

This commit is contained in:
GitHub Action
2025-12-08 04:22:50 +00:00
parent 725f658260
commit bc524eeb44
4 changed files with 537 additions and 2394 deletions

View File

@@ -6,7 +6,7 @@ import { onCleanup, onMount } from "solid-js"
export function DialogThemeList() {
const theme = useTheme()
const options = Object.keys(theme.all())
.sort((a, b) => a.localeCompare(b, undefined, { sensitivity: 'base' }))
.sort((a, b) => a.localeCompare(b, undefined, { sensitivity: "base" }))
.map((value) => ({
title: value,
value: value,