({ children }: { children: React.ReactNode })
| 24 | import { CommandPalette, useCommandPaletteKeyboard } from '@/features/command-palette'; |
| 25 | |
| 26 | function AuthIntegration({ children }: { children: React.ReactNode }) { |
| 27 | useAuthStoreIntegration(); |
| 28 | return <>{children}</>; |
| 29 | } |
| 30 | |
| 31 | function CommandPaletteProvider({ children }: { children: React.ReactNode }) { |
| 32 | useCommandPaletteKeyboard(); |
nothing calls this directly
no test coverage detected