From db7753beec5345c3438bb993250dc194df73897c Mon Sep 17 00:00:00 2001 From: Fractal-Tess Date: Fri, 16 Sep 2022 16:52:24 +0300 Subject: [PATCH] removed explicit string --- src/lib/components/HashInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/HashInput.svelte b/src/lib/components/HashInput.svelte index 78e4ff4..c7f4417 100644 --- a/src/lib/components/HashInput.svelte +++ b/src/lib/components/HashInput.svelte @@ -2,7 +2,7 @@ import { invoke } from '@tauri-apps/api'; let hashInput = 'Hello world'; - let hashOutput: string = ''; + let hashOutput = ''; $: (async () => { hashOutput = await invoke('hash256sum', { hashInput }); })();