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;
});
});