Remove unused code

This commit is contained in:
Santiago Lo Coco 2024-04-24 14:21:19 +02:00
parent 18a41b3b3f
commit e855ecc349
2 changed files with 7 additions and 22 deletions

View File

@ -5,15 +5,12 @@ const TEN_YEARS_IN_SECONDS = 10 * 365 * 24 * 60 * 60
export const actions: Actions = {
theme: async ({ cookies, request }) => {
const data = await request.formData()
const theme = data.get("theme")
if (!isValidTheme(theme)) {
return fail(400, { theme, missing: true })
}
cookies.set("theme", theme, { path: "/", maxAge: TEN_YEARS_IN_SECONDS })
return { success: true }
// const data = await request.formData()
// const theme = data.get("theme")
// if (!isValidTheme(theme)) {
// return fail(400, { theme, missing: true })
// }
// cookies.set("theme", theme, { path: "/", maxAge: TEN_YEARS_IN_SECONDS })
// return { success: true }
},
}

View File

@ -1,15 +1,3 @@
<script context="module">
export async function load() {
const res = await fetch("https://api.example.com/data")
const data = await res.json()
return {
props: {
data,
},
}
}
</script>
<script lang="ts">
import { onDestroy, onMount } from "svelte"
import { writable } from "svelte/store"