From a9ec7ee58c8532896c442068ce959f568804098d Mon Sep 17 00:00:00 2001 From: Spectralitree <72747870+Spectralitree@users.noreply.github.com> Date: Wed, 15 Dec 2021 13:55:48 +0100 Subject: [PATCH] fix: entering an id to view a public profile sent you to the wrong url --- src/pages/Public.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Public.svelte b/src/pages/Public.svelte index 5adf199b..9bd4d6c1 100644 --- a/src/pages/Public.svelte +++ b/src/pages/Public.svelte @@ -21,7 +21,7 @@ Submit a system ID to view that system's profile. - {if (event.key === "Enter" && sysInput !== "") navigate(`/public/s/${sysInput.toLowerCase().trim()}`)}} bind:value={sysInput} /> + {if (event.key === "Enter" && sysInput !== "") navigate(`/profile/s/${sysInput.toLowerCase().trim()}`)}} bind:value={sysInput} /> {#if sysInput !== ""}