diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-10-09 22:52:28 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-10-09 22:52:28 +0300 |
commit | 5449985ccbec3ccadfb983edd5a31dae56d2fa6f (patch) | |
tree | b90dd8f87d2cb4c8f4fc239d65f647c47aea0ec0 | |
parent | 2c209a3f52648653fda853614609c76019e5a7d2 (diff) | |
download | which-ui-5449985ccbec3ccadfb983edd5a31dae56d2fa6f.tar.gz |
Correct validate Dom nesting warning
-rw-r--r-- | src/containers/PollCreation/PollCreation.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index 2990213..7f4edc1 100644 --- a/src/containers/PollCreation/PollCreation.tsx +++ b/src/containers/PollCreation/PollCreation.tsx @@ -83,7 +83,7 @@ const PollCreation: React.FC = () => { <Container maxWidth="sm" disableGutters> <Card elevation={3}> {user && <UserStrip user={user} />} - <Typography> + <Typography component='span'> <InputBase multiline fullWidth |