Consolidates and renames the app title

This commit is contained in:
2026-05-18 17:28:39 -05:00
parent 86866f4db7
commit aae0c3ff8d
4 changed files with 8 additions and 3 deletions

View File

@@ -2,8 +2,9 @@
import {push} from 'svelte-spa-router'
import {auth, clearTokens} from '../stores/auth.svelte'
import {apiLogout} from '../api/index'
import {APP_NAME} from '../config'
let { title = 'Scavenger Hunt' }: { title?: string } = $props()
let { title = APP_NAME }: { title?: string } = $props()
async function handleLogout() {
try {