[READ-ONLY] Mirror of https://github.com/probablykasper/kadium. App for staying ontop of YouTube channels' uploads kadium.kasper.space
linux macos notifications tauri windows youtube
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix types

Kasper (Feb 21, 2023, 3:47 AM +0100) 760b5c45 a8e411dd

+3 -2
+2 -1
src/App.svelte
··· 11 11 tags, 12 12 settingsOpen, 13 13 } from './lib/data' 14 - import { Route, router } from 'tinro' 14 + import { router } from 'tinro' 15 + import Route from 'tinro/cmp/Route.svelte' // Import directly due to typescript issue 15 16 import VideosPage from './routes/Videos.svelte' 16 17 import Nav from './lib/Nav.svelte' 17 18 import { onDestroy } from 'svelte'
+1 -1
src/lib/Button.svelte
··· 1 1 <script lang="ts"> 2 2 export let secondary = false 3 3 export let danger = false 4 - export let type = 'button' 4 + export let type: 'button' | 'reset' | 'submit' | null | undefined = 'button' 5 5 let normal = false 6 6 $: normal = !danger && !secondary 7 7 </script>