style(linting): lint

This commit is contained in:
limes.pink 2025-04-15 03:12:52 +02:00
parent 6168490f8c
commit 7db70e0b66
2 changed files with 3 additions and 5 deletions

View File

@ -16,9 +16,9 @@ function handleDropdownButton(dropdown: boolean | string) {
const scrollY = ref<number>(0);
onMounted(() => {
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- we're in on mounted so it should be fine
window.addEventListener('scroll', () => {
// eslint-disable-next-line no-undef
// eslint-disable-next-line no-undef -- same here
scrollY.value = window.scrollY;
});
});

View File

@ -1,7 +1,5 @@
<script lang="ts" setup>
const { messages, te, t, tm } = useI18n();
const fallbackLocale = messages.value['en-US'];
const { te, t, tm } = useI18n();
const nOfQAs = computed(() => tm<string>('faq.QAs') as string[]).value.length;
const maxCoreStaffIndex = computed(() => tm<string>('credits.people') as string[]).value.length - 1;