aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123@gmail.com>2020-06-28 19:09:20 +0300
committerilyayudovin <ilyayudovin123@gmail.com>2020-06-28 19:09:20 +0300
commit7ad127942bb12ee9de691e10dc9386849459ea46 (patch)
tree1e576177546a8d3fe7f0f5dbf40bed34ca23a75e /src/index.tsx
parentccb26a42a3ad8d748e00cfbe9687f3198d5b8cb4 (diff)
downloadwhich-ui-7ad127942bb12ee9de691e10dc9386849459ea46.tar.gz
feat: add poll submission component
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 49c177b..02f7969 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -104,7 +104,7 @@ const App: React.FC = () => {
setUser={setUser}
/>
) }
- { page.prefix === 'feed' && <FeedPage navigate={navigate} /> }
+ { page.prefix === 'feed' && <FeedPage navigate={navigate} user={user} /> }
{ page.prefix === 'auth' && <AuthPage logIn={logIn} /> }
</div>
<ScrollTopArrow />