Merge branch 'main' into feature/friendly-captcha
Some checks failed
Lint / pnpm_install (pull_request) Successful in 2m27s
Test (backend) / unit (22.x) (pull_request) Successful in 8m7s
Test (backend) / e2e (22.x) (pull_request) Successful in 9m18s
Test (frontend) / vitest (22.x) (pull_request) Successful in 3m13s
Test (production install and build) / production (22.x) (pull_request) Successful in 3m0s
Lint / lint (backend) (pull_request) Failing after 2m2s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 3m32s
Lint / lint (misskey-js) (pull_request) Successful in 2m34s
Lint / lint (sw) (pull_request) Successful in 2m56s
Lint / lint (frontend) (pull_request) Failing after 8m37s
Lint / typecheck (backend) (pull_request) Failing after 2m36s
Lint / typecheck (misskey-js) (pull_request) Successful in 2m16s

This commit is contained in:
ashten 2025-01-19 06:36:16 +00:00
commit e35977afd8

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