Fixed lint issues
All checks were successful
Lint / pnpm_install (push) Successful in 2m28s
Test (production install and build) / production (22.x) (push) Successful in 2m57s
Lint / lint (backend) (push) Successful in 2m33s
Lint / lint (misskey-js) (push) Successful in 3m58s
Lint / lint (sw) (push) Successful in 2m8s
Lint / lint (frontend) (push) Successful in 9m58s
Lint / typecheck (backend) (push) Successful in 3m14s
Lint / typecheck (misskey-js) (push) Successful in 4m19s

This commit is contained in:
Ashten 2025-01-18 20:48:09 -08:00
parent 341f92412f
commit 3c9b0effae

View file

@ -110,7 +110,7 @@ const announcements = {
limit: 10,
};
const isTimelineAvailable = ref(instance.policies?.ltlAvailable || instance.policies?.gtlAvailable);
const isTimelineAvailable = ref(instance.policies.ltlAvailable || instance.policies.gtlAvailable);
const showMenu = ref(false);
const isDesktop = ref(window.innerWidth >= DESKTOP_THRESHOLD);