Skip to content

Commit

Permalink
feat: remove notifications panel until proper notifications support i…
Browse files Browse the repository at this point in the history
…s implemented
  • Loading branch information
Me-Phew committed Mar 21, 2024
1 parent a159b9c commit f1a9425
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/components/Navbar/DesktopNavigation/DesktopNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@
</ul>
<div class="user-prof" v-else>
<ul>
<li>
<!-- TODO: ZH-18 Finish implementing notifications -->
<!-- <li>
<NotificationsPanel />
</li>
</li> -->
<li>
<UserProfilePanel />
</li>
Expand All @@ -102,13 +103,15 @@

<script>
import { useI18n } from "vue-i18n";
import NotificationsPanel from "@/components/Navbar/NotificationsPanel.vue";
// TODO: ZH-18 Finish implementing notifications
// import NotificationsPanel from "@/components/Navbar/NotificationsPanel.vue";
import UserProfilePanel from "@/components/Navbar/UserProfilePanel.vue";
export default {
name: "desktopNavigation",
components: {
NotificationsPanel,
// TODO: ZH-18 Finish implementing notifications
// NotificationsPanel,
UserProfilePanel,
},
setup() {
Expand Down

0 comments on commit f1a9425

Please sign in to comment.