File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export function MobileSheetHost() {
1616
1717 return (
1818 < >
19- { openSheet === 'repos' && < RepoQuickSwitchSheet isOpen onClose = { close } /> }
19+ < RepoQuickSwitchSheet isOpen = { openSheet === 'repos' } onClose = { close } />
2020 { openSheet === 'files' && (
2121 < FileBrowserSheet
2222 isOpen
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const DialogOverlay = React.forwardRef<
2020 < DialogPrimitive . Overlay
2121 ref = { ref }
2222 className = { cn (
23- "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0" ,
23+ "fixed inset-0 z-[70] bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0" ,
2424 className
2525 ) }
2626 { ...props }
@@ -95,7 +95,7 @@ const DialogContent = React.forwardRef<
9595 autoFocus = { false }
9696 aria-describedby = { undefined }
9797 className = { cn (
98- "fixed z-50 grid gap-4 border-0 sm:border bg-background shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0" ,
98+ "fixed z-[70] grid gap-4 border-0 sm:border bg-background shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0" ,
9999 fullscreen
100100 ? "inset-0 w-full h-full max-w-none max-h-none p-0 rounded-none"
101101 : mobileFullscreen
You can’t perform that action at this time.
0 commit comments