diff --git a/frontend/src/components/TagType.tsx b/frontend/src/components/TagType.tsx index fa5d1cf..e32f945 100644 --- a/frontend/src/components/TagType.tsx +++ b/frontend/src/components/TagType.tsx @@ -134,15 +134,6 @@ export default function SubtypePage() { return (
- {isLoading ? ( -
- -
- ) : ( - <> {/* Header */}

{tagTypeId}

@@ -165,17 +156,18 @@ export default function SubtypePage() { } isLoading={isLoading} > - {tags.length > 0 ? ( - tags.map((tag) => ) - ) : ( -

- No related tags found for this tag type. -

- )} + {tags?.map((tag) => ) + } + {isLoading && ( +
+ +
+ )}
- - )} ); }