Skip to content

Commit

Permalink
hide ltt for boca time
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgeiss0702 committed Jan 28, 2025
1 parent c32188e commit d302b71
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/routes/ltt-time/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
}
let mounted = false;
onMount(() => mounted = true)
onMount(() => {
mounted = true;
if(isBoca) {
history.replaceState(null, "", "/boca-time")
}
})
</script>
<svelte:head>
<title>{isBoca ? "Boca" : "LTT"} Time</title>
Expand Down

0 comments on commit d302b71

Please sign in to comment.