15 lines
449 B
Svelte
15 lines
449 B
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { page } from '$app/state';
|
|
import { ChatSettings } from '$lib/components/app';
|
|
import type { SettingsSectionTitle } from '$lib/constants';
|
|
|
|
let sectionParam = $derived(page.url.searchParams.get('section') as SettingsSectionTitle | null);
|
|
</script>
|
|
|
|
<ChatSettings
|
|
onSave={() => goto('#/')}
|
|
initialSection={sectionParam ?? undefined}
|
|
class="mx-auto max-h-[100dvh] md:pl-8"
|
|
/>
|