Remove unused code
This commit is contained in:
parent
18a41b3b3f
commit
e855ecc349
|
@ -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 }
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue