mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-01 19:26:30 +02:00
Move participants provider (#250)
This commit is contained in:
parent
c2aea134ef
commit
8ced6bb2a4
1 changed files with 4 additions and 4 deletions
|
@ -35,13 +35,13 @@ const PollPageLoader: NextPage = () => {
|
||||||
|
|
||||||
if (poll) {
|
if (poll) {
|
||||||
return (
|
return (
|
||||||
<StandardLayout>
|
|
||||||
<ParticipantsProvider pollId={poll.id}>
|
<ParticipantsProvider pollId={poll.id}>
|
||||||
|
<StandardLayout>
|
||||||
<PollContextProvider poll={poll} urlId={urlId} admin={admin}>
|
<PollContextProvider poll={poll} urlId={urlId} admin={admin}>
|
||||||
<PollPage />
|
<PollPage />
|
||||||
</PollContextProvider>
|
</PollContextProvider>
|
||||||
</ParticipantsProvider>
|
|
||||||
</StandardLayout>
|
</StandardLayout>
|
||||||
|
</ParticipantsProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue