Skip to content

Commit

Permalink
Update App.svelte
Browse files Browse the repository at this point in the history
Removed extra spaces.
  • Loading branch information
RajuPedda authored Sep 27, 2024
1 parent ec8c3da commit 59f57ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/7-webapp-features/2-fetch-data/svelte5/App.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script>
import useFetchUsers from "./useFetchUsers.svelte.js";
const result = useFetchUsers()
const {isLoading, error, users} = $derived(result);
const response = useFetchUsers();
const {isLoading, error, users} = $derived(response);
</script>

{#if isLoading}
Expand Down

0 comments on commit 59f57ae

Please sign in to comment.