diff --git a/src/app/components/PrimaryNavItemSpace.svelte b/src/app/components/PrimaryNavItemSpace.svelte
index 08e8401e4..a93215638 100644
--- a/src/app/components/PrimaryNavItemSpace.svelte
+++ b/src/app/components/PrimaryNavItemSpace.svelte
@@ -5,7 +5,11 @@
import {makeSpacePath, goToSpace} from "@app/util/routes"
import {notifications} from "@app/util/notifications"
- const {url} = $props()
+ type Props = {
+ url: string
+ }
+
+ const {url}: Props = $props()
const onClick = () => goToSpace(url)
@@ -15,5 +19,5 @@
title={displayRelayUrl(url)}
class="tooltip-right"
notification={$notifications.has(makeSpacePath(url))}>
-
+