diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-09 21:22:10 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-09 21:22:10 -0400 |
commit | 93f5f1595112f9ae45274f811cb17be5b40dca1f (patch) | |
tree | fbf5fb1731b5955a3b28f75e8209fd81e56f7a5f /src/components/taggs | |
parent | 2bf6764cf287fbce958e4a4f43f146e0e3c2ddf0 (diff) |
fix
Diffstat (limited to 'src/components/taggs')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 5d26539b..82ee1e91 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -106,6 +106,9 @@ 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} />; |