Skip to content

Commit

Permalink
fix(WelcomeStepsModal): Postal code entry not working when other moda… (
Browse files Browse the repository at this point in the history
#354)

* fix(WelcomeStepsModal): Postal code entry not working when other modal is open fixed

* removed debug value from CovMap.tsx
  • Loading branch information
kimamov committed Nov 3, 2020
1 parent 989489f commit 16821c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/CovMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ export const CovMap = () => {
touchAction: "none",
position: "absolute",
}}
disableEnforceFocus
container={() => document.getElementById("mapParentDiv")}
BackdropProps={{ style: { position: "absolute" } }}
>
Expand Down
3 changes: 2 additions & 1 deletion src/components/WelcomeStepsModal/WelcomeStepsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ export const WelcomeStepsModal: React.FC<{ subPage?: string }> = (props) => {

return (
<div>
<Dialog open={userPostalCode === null} fullScreen={fullScreen} onClose={onClose}>
<Dialog style={{ overflow: "hidden" }} open={userPostalCode === null} fullScreen={fullScreen} onClose={onClose}>
<div
style={{
overflow: "auto",
display: "flex",
flexDirection: "column",
alignItems: "center",
Expand Down

0 comments on commit 16821c6

Please sign in to comment.