diff --git a/src/short-urls/helpers/ShortUrlsRow.tsx b/src/short-urls/helpers/ShortUrlsRow.tsx
index 10f3e1a4..adc7569d 100644
--- a/src/short-urls/helpers/ShortUrlsRow.tsx
+++ b/src/short-urls/helpers/ShortUrlsRow.tsx
@@ -67,7 +67,7 @@ export const ShortUrlsRow = (
)}
-
+
|
void;
colorGenerator: ColorGenerator;
- disabled?: boolean;
}
-export const Tags: FC = ({ tags, onTagClick, colorGenerator, disabled = false }) => {
+export const Tags: FC = ({ tags, onTagClick, colorGenerator }) => {
if (isEmpty(tags)) {
- return disabled ? null : No tags;
+ return No tags;
}
return (
|