refactor: move contrib hydration to layout

This commit is contained in:
Ax333l 2022-10-21 22:00:27 +02:00
parent 01bc0f2063
commit 81bd5e041f
No known key found for this signature in database
GPG Key ID: D2B4D85271127D23
2 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
<script lang="ts">
import type { APIOutput } from './+page';
import type { APIOutput } from '../+layout';
import ContributorHost from '$lib/components/molecules/ContributorHost.svelte';
import Footer from '$lib/components/molecules/Footer.svelte';
import { fly } from 'svelte/transition';
import { quintOut } from 'svelte/easing';
// From the layout hydration. See +layout.ts
export let data: APIOutput;
</script>