Skip to content

Commit

Permalink
fix bug in json format
Browse files Browse the repository at this point in the history
  • Loading branch information
birdpump committed Mar 14, 2024
1 parent ba891bb commit c24b066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/(admin)/admin/edit/views/UserEdit.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
{columns}
server={{
url: 'https://locker-api.cvapps.net/admin/data/user-data?page=1&pageSize=10', // Assuming this is the route where you fetch data
then: data => data // Assuming getUsersDB() already returns the formatted data
then: (response) => response.json() // Parse response JSON
}}
/>
</div>

0 comments on commit c24b066

Please sign in to comment.