We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5da753 + ae661c9 commit 7c9790bCopy full SHA for 7c9790b
.prettierignore
@@ -1 +1,2 @@
1
+# ignore all the shadcn components from formatting
2
resources/js/components/ui/*
resources/js/hooks/use-mobile-navigation.ts
@@ -4,13 +4,6 @@ export function useMobileNavigation() {
4
const cleanup = useCallback(() => {
5
// Remove pointer-events style from body...
6
document.body.style.removeProperty('pointer-events');
7
-
8
- // Find and click the close button of any open sheet...
9
- const closeButton = document.querySelector('[data-radix-collection-item]');
10
11
- if (closeButton instanceof HTMLElement) {
12
- closeButton.click();
13
- }
14
}, []);
15
16
return cleanup;
0 commit comments