diff --git a/src/components/features/GroupView.svelte b/src/components/features/GroupView.svelte
index 597016e..e984d2a 100644
--- a/src/components/features/GroupView.svelte
+++ b/src/components/features/GroupView.svelte
@@ -16,26 +16,30 @@
Group Name:
{group.settings.name}
-
-
Tags:
-
-
- {#each sortedTagsList as tagName}
- {tagName}
- {/each}
-
-
-
-
-
Prefixes:
-
-
- {#each sortedPrefixes as prefixName}
- {prefixName}*
- {/each}
-
-
-
+{#if sortedTagsList.length}
+
+
Tags:
+
+
+ {#each sortedTagsList as tagName}
+ {tagName}
+ {/each}
+
+
+
+{/if}
+{#if sortedPrefixes.length}
+
+
Prefixes:
+
+
+ {#each sortedPrefixes as prefixName}
+ {prefixName}*
+ {/each}
+
+
+
+{/if}