Skip to content

Commit

Permalink
chore: fix tab selection
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Dec 5, 2024
1 parent 3345390 commit c93ec33
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
3 changes: 2 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ useSeoMeta({
<NuxtPwaManifest />
<NuxtLoadingIndicator />

<HeaderComponent :links="headerLinks()" />
<!-- FIXME: Hack, we want to pass computed property while `useHeaderNav` expects an array -->
<HeaderComponent :links="computed(() => headerLinks()) as any" />

<UMain>
<NuxtLayout>
Expand Down
2 changes: 1 addition & 1 deletion content/00.zksync-era/40.tooling/20.hardhat/_dir.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
title: Hardhat-ZKsync
title: Hardhat
2 changes: 1 addition & 1 deletion content/00.zksync-era/40.tooling/30.foundry/_dir.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
title: ZKsync Foundry
title: Foundry
3 changes: 2 additions & 1 deletion error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ provide('navigation', navigation);

<template>
<div>
<HeaderComponent :links="headerLinks()" />
<!-- FIXME: Hack, we want to pass computed property while `useHeaderNav` expects an array -->
<HeaderComponent :links="computed(() => headerLinks()) as any" />

<UMain>
<UContainer>
Expand Down
9 changes: 0 additions & 9 deletions pages/ecosystem/[...slug].vue

This file was deleted.

0 comments on commit c93ec33

Please sign in to comment.