Skip to content

Commit

Permalink
fix(component): removed unused import preventing build correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanjoSalvador committed Oct 24, 2024
1 parent 681adb7 commit 42d9810
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/sidebar/SidebarMenu.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
<script lang="ts">
import { NuxtLink } from '#build/components';
import { useSessionStore } from '~/stores/session'
</script>

<template>
<div class="sidebar">
<ul>
Expand All @@ -23,7 +18,7 @@ import { useSessionStore } from '~/stores/session'
</NuxtLink>
</li>
<li>
<button class="button is-text" @click="logout()">
<button class="button is-text">
<span class="icon is-small">
<font-awesome :icon="['fas', 'right-from-bracket']" class="list-icon" />
</span>
Expand Down Expand Up @@ -53,6 +48,5 @@ import { useSessionStore } from '~/stores/session'
}
.sidebar {
position: fixed;
top: 4.75rem;
}
</style>

0 comments on commit 42d9810

Please sign in to comment.