diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 82ee1e91..94011e86 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -106,9 +106,6 @@ const Tagg: React.FC<TaggProps> = ({ }; const pickTheRightRingHere = () => { - if (whiteRing && !userXId) { - return <WhiteRing width={TAGG_RING_DIM} height={TAGG_RING_DIM} />; - } if (youMayPass) { if (whiteRing) { return <WhiteRing width={TAGG_RING_DIM} height={TAGG_RING_DIM} />; @@ -142,7 +139,7 @@ const Tagg: React.FC<TaggProps> = ({ return ( <> - {userXId && !isLinked ? ( + {(userXId && !isLinked) || (whiteRing && !userXId) ? ( <Fragment /> ) : ( <> |