Skip to content

Commit

Permalink
Rename MobileNavbar.svelte to MobileNav.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaGanchev committed Sep 22, 2023
1 parent a64b411 commit efc1f90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/lib/Navbar.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { afterNavigate } from '$app/navigation';
import { navigating } from '$app/stores'
import MobileNavbar from "$lib/MobileNavbar.svelte";
import MobileNav from "$lib/MobileNav.svelte";
import { onMount } from "svelte";
import DesktopNav from "$lib/DesktopNav.svelte";
Expand Down Expand Up @@ -89,7 +89,7 @@
navigationLinksLeft={navigationLinksLeft}
navigationLinksRight={navigationLinksRight} />
{:else}
<MobileNavbar scrollMode={scrollMode}
<MobileNav scrollMode={scrollMode}
navigationLinksLeft={navigationLinksLeft}
navigationLinksRight={navigationLinksRight} />
{/if}
Expand Down

0 comments on commit efc1f90

Please sign in to comment.