diff --git a/src/routes/profile/+page.ts b/src/routes/profile/+page.ts index 8970e93..1cf7f05 100644 --- a/src/routes/profile/+page.ts +++ b/src/routes/profile/+page.ts @@ -1,6 +1,5 @@ import type { PageLoad } from './$types'; import { LANGUAGES } from '../../constants'; -import { PUBLIC_URL } from '$env/static/public'; import { marked } from 'marked'; export const load = (async ({ fetch }) => { @@ -8,7 +7,6 @@ export const load = (async ({ fetch }) => { const termsText = await res.text(); return { LANGUAGES, - PUBLIC_URL, terms: marked.parse(termsText, { mangle: false, headerIds: false