diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-10 11:06:33 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-10 11:06:33 -0800 |
commit | e60250a3661df67a6c0f3d7e17cf5943f03538c3 (patch) | |
tree | 946ac2709c99fc6d5509b3eebb1a728656a3c001 | |
parent | 949fc58ea844fa51b4fcbf97e40720efb43dc058 (diff) |
does not add unlinked socials on SP
-rw-r--r-- | src/components/taggs/TaggsBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/TaggsBar.tsx b/src/components/taggs/TaggsBar.tsx index cc0c70a7..e7bdb0f2 100644 --- a/src/components/taggs/TaggsBar.tsx +++ b/src/components/taggs/TaggsBar.tsx @@ -77,7 +77,7 @@ const TaggsBar: React.FC<TaggsBarProps> = ({ ); i++; } - if (!userXId) { + if (!userXId && screenType !== ScreenType.SuggestedPeople) { for (let social of unlinkedSocials) { new_taggs.push( <Tagg |