From 1d272f8b370bde0edde4011e401007bfe984f61f Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Fri, 14 Nov 2025 15:02:23 -0800 Subject: [PATCH] Tweak nav icon size --- src/app/components/PrimaryNavItemSpace.svelte | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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))}> - +