diff options
Diffstat (limited to 'src/containers/PollCreation')
| -rw-r--r-- | src/containers/PollCreation/PollCreation.tsx | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index 489c12a..6821544 100644 --- a/src/containers/PollCreation/PollCreation.tsx +++ b/src/containers/PollCreation/PollCreation.tsx @@ -52,6 +52,8 @@ const PollCreation: React.FC = () => {    const handleClick = async () => {      try {        const [leftUrl, rightUrl] = await Bluebird.all([resolveLeft(), resolveRight()]); +      console.log('leftUrl', leftUrl); +      console.log('rightUrl', rightUrl);        const contents = {          left: { url: leftUrl },  |