Skip to content

Commit

Permalink
Remove loader
Browse files Browse the repository at this point in the history
  • Loading branch information
dv297 committed Oct 5, 2022
1 parent 89ae36b commit dfd1c4f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pages/app/projects/[...workspaceTag].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { useRouter } from 'next/router';

import AppDefaultLayout from '@src/components/AppDefaultLayout';
import Button from '@src/components/common/Button';
import FullScreenLoader from '@src/components/common/FullScreenLoader';
import ConstrainDashboardContainer from '@src/components/ConstrainDashboardContainer';
import EmptyPlaceholder from '@src/components/EmptyPlaceholder';
import ProjectsService from '@src/services/ProjectsService';
Expand All @@ -29,7 +28,7 @@ const Page = () => {
);

if (isLoading || !data) {
return <FullScreenLoader />;
return null;
}

if (data.length === 0) {
Expand Down

1 comment on commit dfd1c4f

@vercel
Copy link

@vercel vercel bot commented on dfd1c4f Oct 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

planner – ./

planner-dv297.vercel.app
planner-git-main-dv297.vercel.app
planner-nine.vercel.app

Please sign in to comment.