Fix space switcher in platform mode, move favicon link

This commit is contained in:
Jon Staab
2024-10-22 11:38:44 -07:00
parent 0851ca08a2
commit 4222e7364f
4 changed files with 25 additions and 11 deletions
+5 -1
View File
@@ -35,7 +35,7 @@
import AppContainer from "@app/components/AppContainer.svelte"
import ModalContainer from "@app/components/ModalContainer.svelte"
import {theme} from "@app/theme"
import {INDEXER_RELAYS} from "@app/state"
import {INDEXER_RELAYS, PLATFORM_LOGO} from "@app/state"
import {loadUserData} from "@app/commands"
import * as state from "@app/state"
@@ -133,6 +133,10 @@
})
</script>
<svelte:head>
<link rel="icon" href={PLATFORM_LOGO} />
</svelte:head>
{#await ready}
<div data-theme={$theme} />
{:then}
+1 -1
View File
@@ -1,5 +1,5 @@
<script lang="ts">
import {onMount} from 'svelte'
import {onMount} from "svelte"
import {goto} from "$app/navigation"
import Icon from "@lib/components/Icon.svelte"
import Link from "@lib/components/Link.svelte"