Skip to content

Commit

Permalink
fix: projecs skeleton loading when no folder_id
Browse files Browse the repository at this point in the history
  • Loading branch information
majkshkurti committed Sep 17, 2024
1 parent 90c0353 commit 35fc671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/[lng]/(dashboard)/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Projects = () => {
<TileGrid
view={view}
items={projects?.items ?? []}
isLoading={isProjectLoading || !queryParams.folder_id}
isLoading={isProjectLoading}
type="project"
onClick={(item) => {
if (item && item.id) {
Expand Down

0 comments on commit 35fc671

Please sign in to comment.