Skip to content

Commit 48ef244

Browse files
feat(tutot): remove nav link
1 parent a3a2d0e commit 48ef244

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/NavComponent.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const user = useUserStore();
1313
const isNavOpened = ref<boolean>(false);
1414
1515
const isProd = import.meta.env.VITE_ENVIRONMENT === 'prod';
16+
console.log('isProd', isProd);
1617
1718
const handle_nav_bookmarks = () => {
1819
isNavOpened.value = false;
@@ -77,7 +78,7 @@ const handle_nav_bookmarks = () => {
7778
}}</span>
7879
</router-link>
7980
</div>
80-
<div class="link-wrapper" v-if="!isProd">
81+
<!-- <div class="link-wrapper" v-if="!isProd">
8182
<router-link
8283
class="router-link"
8384
to="/tutor"
@@ -89,7 +90,7 @@ const handle_nav_bookmarks = () => {
8990
</div>
9091
<span class="item-name" :class="isNavOpened && 'visible-name'">{{ $t('tutor') }}</span>
9192
</router-link>
92-
</div>
93+
</div> -->
9394
<div class="nav-langs" :class="isNavOpened && 'open'">
9495
<a
9596
class="nav-lang"

0 commit comments

Comments
 (0)