refactor: remove unused router import and layout args

This commit is contained in:
2026-08-02 16:22:56 +02:00
parent fa66b416f3
commit a63682ced0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ createInertiaApp({
progress: {
color: '#4B5563',
},
layout(name, page) {
layout() {
return Layout;
},
resolve(name) {
+1 -1
View File
@@ -2,7 +2,7 @@
import { t } from 'i18next';
import dashboard from '@/routes/dashboard';
import history from '@/routes/history';
import { Link, router, usePage } from '@inertiajs/vue3';
import { Link, usePage } from '@inertiajs/vue3';
import { computed } from 'vue';
const page = usePage();