Skip to content

Commit

Permalink
#115 removed unused type import (#116)
Browse files Browse the repository at this point in the history
* #115 removed unused type import

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
dominikgeissler and pre-commit-ci[bot] authored Oct 1, 2023
1 parent baa7122 commit c575c6a
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/routes/+page.server.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
import { fetch_chapters, fetch_page } from '$lib/fetch'
import type { PageServerLoad } from './$types'

export const load = async () => {
return {
page: fetch_page(`/`),
chapters: fetch_chapters(),
// ...airtable_fetch(
// `{
// students: studentenStatistiken {
// id
// }
// pupils: schuelerStatistiken {
// id
// }
// }`,
// { cache: `force-cache` }
// ),
}
}

0 comments on commit c575c6a

Please sign in to comment.