diff options
| author | mat <github@matdoes.dev> | 2022-12-15 18:14:46 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-12-15 18:14:46 -0600 |
| commit | 925ad2bfff17f8d9381731fb0050936dcd7e0a72 (patch) | |
| tree | 6f9fd4547ff9f883af1771bda5e85b7e0f5a56bd /src/routes/auctionprices | |
| parent | 6e723aadf6de45a79b4ef64d288ea275628232c5 (diff) | |
| download | skyblock-stats-925ad2bfff17f8d9381731fb0050936dcd7e0a72.tar.gz skyblock-stats-925ad2bfff17f8d9381731fb0050936dcd7e0a72.tar.bz2 skyblock-stats-925ad2bfff17f8d9381731fb0050936dcd7e0a72.zip | |
finish migrating to sveltekit v1
hopefully
Diffstat (limited to 'src/routes/auctionprices')
| -rw-r--r-- | src/routes/auctionprices/+page.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/auctionprices/+page.ts b/src/routes/auctionprices/+page.ts index 8166a3c..31af8e3 100644 --- a/src/routes/auctionprices/+page.ts +++ b/src/routes/auctionprices/+page.ts @@ -1,4 +1,4 @@ -import type { PageData } from './$types' +import type { PageLoad } from './$types' import { fetchApi } from '$lib/api' export const load = (async ({ fetch }) => { @@ -10,4 +10,4 @@ export const load = (async ({ fetch }) => { prices, items, } -}) satisfies PageData +}) satisfies PageLoad |
