Files
supabase/apps/studio/components/ui/HelpPanel/HelpPanel.utils.ts
Francesco Sansalvadore 156f904018 feat: floating mobile toolbar (#43444)
- move navigation components to `apps/studio/components/layouts/Navigation`
- add [FloatingMobileToolbar](https://github.com/supabase/supabase/pull/43444/changes#diff-3dffe47fd51ca851d612d8728e03b2dc344ec213d4f3a46a824d3fa32a7cc851) as quick access to tools such as search, assistant, inline editor, etc - behind feature flag and feature preview (true by default as it's a bit
annoying to have to enable it all the time as previews are stored in
local-storage)
- fix sidebar panels closing on viewport resizing (regression from previous pr)

https://github.com/user-attachments/assets/d6881e3b-5128-4306-bb82-3ca39c755dba

<img width="986" height="697" alt="Screenshot 2026-03-12 at 12 40 11"
src="https://github.com/user-attachments/assets/da8511e2-7d01-4237-b814-596031c747c5"
/>
2026-03-13 12:13:07 +00:00

13 lines
471 B
TypeScript

import { SupportFormUrlKeys } from '@/components/interfaces/Support/SupportForm.utils'
export function getSupportLinkQueryParams(
project: { parent_project_ref?: string } | undefined,
org: { slug?: string } | undefined,
routerRef: string | undefined
): Partial<SupportFormUrlKeys> | undefined {
const projectRef = project?.parent_project_ref ?? routerRef
if (projectRef) return { projectRef }
if (org?.slug) return { orgSlug: org.slug }
return undefined
}