1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-06-05 22:09:25 +02:00
2020-12-15 21:49:15 +01:00

13 lines
226 B
Svelte

<script>
import TrackingPanel from './TrackingPanel.svelte'
import { configStore } from '../stores'
$: showTrackingPanel = $configStore.track === undefined
</script>
{#if showTrackingPanel}
<TrackingPanel />
{/if}