Rename app utils

This commit is contained in:
Jon Staab
2026-06-08 14:14:40 -07:00
parent 879ba5c37f
commit ea6b63de53
188 changed files with 324 additions and 321 deletions
+2 -2
View File
@@ -13,8 +13,8 @@
import ModalBody from "@lib/components/ModalBody.svelte"
import Profile from "@app/components/Profile.svelte"
import LogOut from "@app/components/LogOut.svelte"
import {pushModal} from "@app/util/modal"
import {theme} from "@app/util/theme"
import {pushModal} from "@app/modal"
import {theme} from "@app/theme"
const logout = () => pushModal(LogOut)
const toggleTheme = () => theme.set($theme === "dark" ? "light" : "dark")