()
| 1 | import { useParams } from '@tanstack/react-router'; |
| 2 | |
| 3 | export function useAppParams() { |
| 4 | const params = useParams({ |
| 5 | strict: false, |
| 6 | }); |
| 7 | return params as { |
| 8 | organizationId: string; |
| 9 | projectId: string; |
| 10 | }; |
| 11 | } |
no outgoing calls
no test coverage detected