diff --git a/src/App.svelte b/src/App.svelte index 9f1116c1..68a8f420 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -2,11 +2,11 @@ // import TailwindStyles from "./TailwindStyles.svelte"; import { Route, router } from "tinro"; router.subscribe((routeInfo) => { - console.log(routeInfo.path); + // console.log(routeInfo.path); window.scrollTo(0, 0); }); - console.log($router.path); - console.log(config); + // console.log($router.path); + // console.log(config); if (config.prefersHashRouting) { if (config.prefersHashRouting === true) { router.useHashNavigation(); diff --git a/src/components/FileUpload.svelte b/src/components/FileUpload.svelte index 43607cf4..d3a7e691 100644 --- a/src/components/FileUpload.svelte +++ b/src/components/FileUpload.svelte @@ -6,10 +6,10 @@ // the name to use for the internal file input let name = "filepond"; function handleInit() { - console.log("FilePond has initialised"); + // console.log("FilePond has initialised"); } function handleAddFile(err, fileItem) { - console.log("A file has been added", fileItem); + // console.log("A file has been added", fileItem); } diff --git a/src/components/StatCards.svelte b/src/components/StatCards.svelte index 5687d392..6271dc00 100644 --- a/src/components/StatCards.svelte +++ b/src/components/StatCards.svelte @@ -2,19 +2,16 @@ import { StatsService } from "@odit/lfk-client-js"; import { _ } from "svelte-i18n"; const stats_promise = StatsService.statsControllerGet(); - stats_promise.then((res) => { - console.log(res); - }); -
stats are being loaded...
-This might take a moment 👀
+{$_('stats-are-being-loaded')}
+{$_('this-might-take-a-moment')}