From 816830eea3ff18066bb93418812fb23b8f519f5c Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:43:39 -0700 Subject: [PATCH] allow for more quick instances now that there is more height (#7252) --- apps/app-frontend/src/components/ui/QuickInstanceSwitcher.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app-frontend/src/components/ui/QuickInstanceSwitcher.vue b/apps/app-frontend/src/components/ui/QuickInstanceSwitcher.vue index 0bbabbf9c1..8dc9a0e44b 100644 --- a/apps/app-frontend/src/components/ui/QuickInstanceSwitcher.vue +++ b/apps/app-frontend/src/components/ui/QuickInstanceSwitcher.vue @@ -11,7 +11,7 @@ import { getInstanceIconUrl, list } from '@/helpers/instance' import { instanceKeys } from '@/pages/instance/query-options' const ITEM_SIZE = 52 -const APPROX_USED_VERTICAL_SPACE = 513 // doesn't need to be exact lol just close enough so there's a little gap and no overflow +const APPROX_USED_VERTICAL_SPACE = 475 // doesn't need to be exact lol just close enough so there's a little gap and no overflow const STORAGE_KEY = 'modrinth-quick-instance-count' const { handleError } = injectNotificationManager()