We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
|
1 parent dc44c84 commit 58ba1c1Copy full SHA for 58ba1c1
src/components/entity/ELevel.tsx
@@ -26,8 +26,12 @@ export const NeoELevel: FC<{
26
<div className="flex items-center">
27
<div className="flex whitespace-pre">
28
<span className="inline-block font-bold my-auto">{catThree}</span>
29
- {' | '}
30
- <span className="text-xs">{catTwo}</span>
+ {catTwo && (
+ <>
31
+ {' | '}
32
+ <span className="text-xs">{catTwo}</span>
33
+ </>
34
+ )}
35
{' | '}
36
<span className="text-xs">{catOne}</span>
37
</div>
0 commit comments