Skip to content

Commit 3d3a521

Browse files
committed
fix lint
1 parent 1aa75bf commit 3d3a521

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/js/components/LanguageSwitcher.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const syncLocaleWithBackend = async (langCode: string) => {
5757
},
5858
},
5959
);
60-
} catch (error) {
60+
} catch {
6161
initializeLocale();
6262
}
6363
};

resources/js/types/vue.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare module '*.vue' {
22
import type { DefineComponent } from 'vue';
3-
const component: DefineComponent<{}, {}, any>;
3+
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, any>;
44
export default component;
55
}

0 commit comments

Comments
 (0)