Skip to content

Commit

Permalink
fix: provide default value to suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Jul 15, 2024
1 parent f750a6f commit ef1b463
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/components/Console.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
import { patchSource, reformatInputSource } from "$lib/utils/formatSource";
import { onMount } from "svelte";
export let container: HTMLElement | undefined;
// eslint-disable-next-line no-undef-init
export let container: HTMLElement | undefined = undefined;
let log: Item[] = [];
Expand Down

0 comments on commit ef1b463

Please sign in to comment.