diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-24 15:21:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 15:21:31 -0400 |
commit | 9ddd37d236799d80d3083006e318d3599ec34401 (patch) | |
tree | b2178533baf63023fe772ea5b92a9f638183163d /src/components/profile/Content.tsx | |
parent | 65efe76b1af23f69371bac1207f56a35bb48365a (diff) | |
parent | ef3e601ba92a91334245c48b0a8d03e3b1cacc7a (diff) |
Merge pull request #324 from ankit-thanekar007/tma-642-allow-moment-profile-redirection
[TMA-642]-Allow moment Profile Redirection
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index d4c50d5c..1a5a205c 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -109,9 +109,10 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => { const [isStageOnePromptClosed, setIsStageOnePromptClosed] = useState<boolean>( false, ); - const [isStageThreePromptClosed, setIsStageThreePromptClosed] = useState< - boolean - >(false); + const [ + isStageThreePromptClosed, + setIsStageThreePromptClosed, + ] = useState<boolean>(false); const onRefresh = useCallback(() => { const refrestState = async () => { @@ -308,7 +309,10 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => { isBlocked, }} /> - <TaggsBar {...{y, profileBodyHeight, userXId, screenType}} /> + <TaggsBar + {...{y, profileBodyHeight, userXId, screenType}} + whiteRing={undefined} + /> <View style={styles.momentsContainer}> {userXId && moments.length === 0 && ( <View style={styles.plusIconContainer}> |