Skip to content

Commit

Permalink
loading state a little different
Browse files Browse the repository at this point in the history
  • Loading branch information
kavinvalli committed Oct 24, 2024
1 parent 5ba5fb2 commit 13e2200
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions web/components/templates/clusters/clustersPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ const ClustersPage = () => {
[]
);

if (isLoading) {
return (
<div className="flex justify-center items-center h-screen w-full">
Gathering clusters from your data... This may take a few minutes.
</div>
);
}

return (
<div className="flex flex-col gap-4">
<h1>Clusters</h1>
Expand Down

0 comments on commit 13e2200

Please sign in to comment.