aboutsummaryrefslogtreecommitdiff
path: root/src/routes/index.svelte
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-16 00:08:57 -0700
committerFuwn <[email protected]>2022-03-16 00:08:57 -0700
commit1dda11d5663832595bddff6b226a36ad5d8daec0 (patch)
treef20799cc5679dec099d1cb286e05a772b2690601 /src/routes/index.svelte
parentfeat: image homepages (diff)
downloadfrontend-next-1dda11d5663832595bddff6b226a36ad5d8daec0.tar.xz
frontend-next-1dda11d5663832595bddff6b226a36ad5d8daec0.zip
fmt(routes): prettier
Diffstat (limited to 'src/routes/index.svelte')
-rw-r--r--src/routes/index.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index 12da39e..9497358 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -24,7 +24,7 @@ SPDX-License-Identifier: GPL-3.0-only -->
onMount(async () => {
fetchTime = performance.now();
- image = (await fetchRandomImage());
+ image = await fetchRandomImage();
fetchTime = performance.now() - fetchTime;
complete = true;
});