diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-20 10:44:24 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-20 10:44:24 -0500 |
commit | a2cd0be38858241b00956a5aa5715b3213084db0 (patch) | |
tree | 76959aaf5acbe0c981447d8e2e4c19ff80bb21f5 /src | |
parent | 921cf232551ea6e04bc2d845805f4b59419df085 (diff) |
linting and removed logging
Diffstat (limited to 'src')
-rw-r--r-- | src/components/taggs/TaggsBar.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/taggs/TaggsBar.tsx b/src/components/taggs/TaggsBar.tsx index aaf9a531..05ee18bb 100644 --- a/src/components/taggs/TaggsBar.tsx +++ b/src/components/taggs/TaggsBar.tsx @@ -63,7 +63,6 @@ const TaggsBar: React.FC<TaggsBarProps> = ({ ); let new_taggs = []; let i = 0; - console.log('whiteRing in taggsbar: ', whiteRing); for (let social of linkedSocials) { new_taggs.push( <Tagg @@ -92,7 +91,7 @@ const TaggsBar: React.FC<TaggsBarProps> = ({ setSocialDataNeedUpdate={handleSocialUpdate} userXId={userXId} user={user} - whiteRing ={whiteRing ? whiteRing : undefined} + whiteRing={whiteRing ? whiteRing : undefined} />, ); i++; |