WIP: sidebar overlay component.

This commit is contained in:
a.bouhuolia
2021-08-01 22:11:44 +02:00
parent 44edc990ae
commit 9dbd128236
13 changed files with 277 additions and 56 deletions

View File

@@ -7,10 +7,10 @@ import { useCurrentOrganization } from '../../hooks/query/organization';
*/
export function PrivatePagesProvider({ children }) {
// Fetches the current user's organization.
const { isLoading } = useCurrentOrganization();
// const { isLoading } = useCurrentOrganization();
return (
<DashboardLoadingIndicator isLoading={isLoading}>
<DashboardLoadingIndicator isLoading={false}>
{children}
</DashboardLoadingIndicator>
)