diff --git a/src/lib/components/TopBar.svelte b/src/lib/components/TopBar.svelte index ce54797..accb903 100644 --- a/src/lib/components/TopBar.svelte +++ b/src/lib/components/TopBar.svelte @@ -5,7 +5,6 @@ import SidebarLeft from "$lib/icons/SidebarLeft.svelte"; import SidebarRight from "$lib/icons/SidebarRight.svelte"; import { topBarInput } from "$lib/stores"; - import { get } from "svelte/store"; import Block from "./Block.svelte"; import Button from "./Button.svelte"; @@ -20,7 +19,7 @@ topBarInput.subscribe((val) => { input = val; - currentInput = val; + currentInput = decodeURIComponent(input); }); let iEl: HTMLInputElement;