aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-20 10:44:24 -0500
committerIvan Chen <ivan@tagg.id>2021-02-20 10:44:24 -0500
commita2cd0be38858241b00956a5aa5715b3213084db0 (patch)
tree76959aaf5acbe0c981447d8e2e4c19ff80bb21f5 /src
parent921cf232551ea6e04bc2d845805f4b59419df085 (diff)
linting and removed logging
Diffstat (limited to 'src')
-rw-r--r--src/components/taggs/TaggsBar.tsx3
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++;