Skip to content

Commit

Permalink
fix: App Showing Blank issiue
Browse files Browse the repository at this point in the history
  • Loading branch information
badalkhatri0924 committed Dec 30, 2023
1 parent c11e087 commit f58f6d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/lib/app/authenticator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ export function withAuthentication(Component: NextPage<any, any>, params: Params
if (!user || loading) {
return <></>;
}
if (showPageSkeleton) {
return <TeamPageSkeleton />;
}
// if (showPageSkeleton) {
// return <TeamPageSkeleton />;
// }

return (
<div>
Expand Down

0 comments on commit f58f6d3

Please sign in to comment.