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 = {
|
export const actions: Actions = {
|
||||||
theme: async ({ cookies, request }) => {
|
theme: async ({ cookies, request }) => {
|
||||||
const data = await request.formData()
|
// const data = await request.formData()
|
||||||
const theme = data.get("theme")
|
// const theme = data.get("theme")
|
||||||
|
// if (!isValidTheme(theme)) {
|
||||||
if (!isValidTheme(theme)) {
|
// return fail(400, { theme, missing: true })
|
||||||
return fail(400, { theme, missing: true })
|
// }
|
||||||
}
|
// cookies.set("theme", theme, { path: "/", maxAge: TEN_YEARS_IN_SECONDS })
|
||||||
|
// return { success: 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">
|
<script lang="ts">
|
||||||
import { onDestroy, onMount } from "svelte"
|
import { onDestroy, onMount } from "svelte"
|
||||||
import { writable } from "svelte/store"
|
import { writable } from "svelte/store"
|
||||||
|
|
Loading…
Reference in New Issue