Skip to content

Commit

Permalink
fix: Added isLoading condition to the title (#1886)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtarunkm authored Oct 16, 2023
1 parent a2159d8 commit 03cd66d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/hub/lists/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const ListsHub: WithPageLayout = () => {
))
) : (
<div className="flex flex-col items-center justify-center w-full gap-4 ">
<Title className="text-2xl">You currently have no lists</Title>{" "}
{!isLoading && <Title className="text-2xl">You currently have no lists</Title>}
</div>
)}

Expand Down

0 comments on commit 03cd66d

Please sign in to comment.