Skip to content

Commit a6ff88e

Browse files
format
1 parent 17e67cf commit a6ff88e

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

frontend/src/ui/App.vue

+1-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div
1111
class="relative flex h-full w-0 flex-grow flex-col bg-primary-50 xl:h-screen xl:overflow-hidden xl:rounded-l-3xl xl:shadow-2xl"
1212
>
13-
<RouterView class="flex flex-1 flex-col" v-model:title="title" />
13+
<RouterView v-model:title="title" class="flex flex-1 flex-col" />
1414
</div>
1515
</div>
1616
<div
@@ -27,20 +27,14 @@
2727

2828
<script lang="ts" setup>
2929
import { ref, watch } from 'vue';
30-
import { useRoute, useRouter } from 'vue-router';
31-
import { useI18n } from 'vue-i18n';
3230
import WorldMap from '@/ui/assets/images/worldmap.svg?component';
3331
import { VErrorDialog } from '@/ui/components/common';
3432
import AppFooter from '@/ui/components/partials/AppFooter.vue';
3533
import AppMenu from '@/ui/components/partials/AppMenu.vue';
3634
import AppNavbar from '@/ui/components/partials/AppNavbar.vue';
3735
import { useAuthUseCase } from '@/ui/composables/Application';
3836
import { useViewportSize } from '@/ui/composables/ViewportSize';
39-
import type { RouteMetaData } from '@/ui/model/RouteMetaData';
4037
41-
const route = useRoute();
42-
const router = useRouter();
43-
const i18n = useI18n();
4438
useViewportSize();
4539
const authUseCase = useAuthUseCase();
4640

frontend/src/ui/views/events/details/EventDetailsView.vue

-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ async function fetchEvent(): Promise<void> {
331331
}
332332
333333
async function onEventChanged() {
334-
console.log(event.value);
335334
emit('update:title', event.value?.name || '');
336335
if (!event.value) {
337336
return;

0 commit comments

Comments
 (0)