Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/lib/layouts/Main.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@

const handleNav = () => {
$isMobileNavOpen = !$isMobileNavOpen;
document.body.style.overflow = $isMobileNavOpen ? 'hidden' : '';
};
</script>

Expand Down
2 changes: 1 addition & 1 deletion src/markdoc/tags/Cards_Image_Item.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { setContext, type Snippet } from 'svelte';
import { type Snippet } from 'svelte';

interface CardsImageItemProps {
href: string;
Expand Down
2 changes: 0 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
import { trackEvent } from '$lib/actions/analytics';
import { saveReferrerAndUtmSource } from '$lib/utils/utm';
import { Sprite } from '$lib/components/ui/icon/sprite';
import { setTheme, ThemeProvider } from '$lib/providers/theme';
import { displayHiringMessage } from '$lib/utils/console';

function applyTheme(theme: Theme) {
Expand Down Expand Up @@ -174,7 +173,6 @@
>

<slot />
<ThemeProvider />
<Sprite />

<style lang="scss">
Expand Down
Loading