Skip to content

Commit

Permalink
yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyaPA committed Dec 14, 2023
1 parent d507b7a commit 3a50c82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/lib/components/modal/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
export let show: Writable<boolean>;
onMount(() => {
show.subscribe( val => { val ? dialogContainer.showModal() : dialogContainer.close() });
show.subscribe((val) => {
val ? dialogContainer.showModal() : dialogContainer.close();
});
});
/**
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</script>

<!-- Top navigation Panel -->
<ModalContainer/>
<ModalContainer />
<nav id="main-nav">
<TopBar />
</nav>
Expand Down

0 comments on commit 3a50c82

Please sign in to comment.