FEAT: Implemented ICAO into svelte stores
Some checks failed
Build and Push Development Docker Image / build-and-push (push) Successful in 1m43s
Run Unit and Integration Tests / test (push) Failing after 1m4s

This commit is contained in:
2025-06-18 21:24:16 +01:00
parent fa1a5aff1f
commit 215f4a0e2a
3 changed files with 14 additions and 28 deletions

View File

@ -4,14 +4,9 @@
import { toasts } from 'svelte-toasts';
import Loading from '$lib/components/Loading.svelte';
import { page } from '$app/stores';
import { derived } from 'svelte/store';
// Get the ICAO parameter from the URL
const icao = derived(page, ($page) => $page.url.searchParams.get('icao'));
import { icao } from '$lib/stores/icao';
</script>
<div style="display: none;">
{toasts.add({
title: 'Welcome',