fix(show-registry): correct loading state condition for WhaleLoader display

- Updated the ShowRegistry component to display the WhaleLoader when loading is in progress, improving user experience during data fetching.
This commit is contained in:
Mauricio Siu
2026-02-08 02:27:01 -06:00
parent f6af5daf5e
commit 7a1703a191

View File

@@ -32,7 +32,7 @@ export const ShowRegistry = () => {
</CardDescription>
</CardHeader>
<CardContent className="space-y-2 py-8 border-t">
{!isLoading ? (
{isLoading ? (
<div className="flex flex-row items-center justify-center min-h-[25vh]">
<WhaleLoader />
</div>