aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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++;