fix: Remove console.log(messages);

This commit is contained in:
April Hall 2025-02-05 18:19:29 -05:00
parent 8d5e00e64a
commit fd8b8cdfd3
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B
2 changed files with 0 additions and 3 deletions

View File

@ -3,8 +3,6 @@
import type { LayoutProps } from './$types'; import type { LayoutProps } from './$types';
import MainLayout from '$lib/components/mainLayout.svelte'; import MainLayout from '$lib/components/mainLayout.svelte';
let { data, children }: LayoutProps = $props(); let { data, children }: LayoutProps = $props();
console.log(data.channels);
const channels = data.channels; const channels = data.channels;
</script> </script>

View File

@ -13,7 +13,6 @@ export async function load(): Promise<{ messages: TypeMessage[] }> {
}) })
: []; : [];
console.log(messages);
return { return {
messages: messages ?? [], messages: messages ?? [],
}; };