Skip to content

Commit 105f680

Browse files
authored
fix(app): disable yaps for now (#5214)
2 parents c860e0a + 743c9a7 commit 105f680

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app2/src/lib/components/layout/Navigation.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ let isMoreUnionFirst = $derived(
152152
{#if section.title === "More Union"}
153153
<!-- Spacer to push social icons to bottom -->
154154
<div class="flex-1"></div>
155-
<YapAd />
155+
<!-- <YapAd /> -->
156156
<!-- Special rendering for More Union section - just icons in a row -->
157157
<section class="px-4 py-4 flex flex-col justify-end {!isMoreUnionFirst && index > 0 ? 'border-t border-zinc-800/50' : ''}">
158158
<div class="flex items-center justify-center gap-4">

app2/src/routes/yaps/+page.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { type Load, redirect } from "@sveltejs/kit"
2+
3+
export const load: Load = () => {
4+
throw redirect(302, "/")
5+
}

0 commit comments

Comments
 (0)