Skip to content

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Elweyn committed Apr 11, 2024
1 parent 86be6ad commit 675aaa2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
4 changes: 0 additions & 4 deletions frontend/src/components/PageShell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@
<slot />
</v-app>
</template>

<script lang="ts" setup>
import TopMenu from '#components/menu/TopMenu.vue'
</script>
2 changes: 1 addition & 1 deletion frontend/src/components/menu/TopMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
<script lang="ts" setup>
import { inject } from 'vue'
import MainButton from '#components/buttons/MainButton.vue'
import LogoImage from '#components/menu/LogoImage.vue'
import AuthService from '#src/services/AuthService'
import { useAuthStore } from '#stores/authStore'
import MainButton from '#components/buttons/MainButton.vue';
const authService = inject<AuthService>('authService')
const auth = useAuthStore()
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/layouts/DefaultLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
<script lang="ts" setup>
import { useSlots } from 'vue'
import TopMenu from '#components/menu/TopMenu.vue';
import TopMenu from '#components/menu/TopMenu.vue'
const slots = useSlots()
</script>
Expand Down

0 comments on commit 675aaa2

Please sign in to comment.