diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-05 16:13:23 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-05 20:57:03 -0800 |
commit | 2fd91821fccdf647193f5be1af87c6ef903096a1 (patch) | |
tree | f1be6b06e3bd708d37ae61287d0a2be00e02bcc7 /src/components/profile/Content.tsx | |
parent | f6a08ab2486c02c3555e54fff645a04e952d6fd1 (diff) |
lint
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index ae9f9564..d4c50d5c 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -109,10 +109,9 @@ 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 () => { |