Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 446c839

Browse files
committed
fix: Point modal to app element
1 parent 803ce2f commit 446c839

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/maker/modal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const MakerModal = ({ isOpen, handleClose, children }) => (
4040
isOpen={isOpen}
4141
onRequestClose={handleClose}
4242
style={customStyles}
43-
ariaHideApp={false}
43+
appElement={document.querySelector('#__next')}
4444
>
4545
<CloseButton handleClick={handleClose} />
4646
{children}

components/maker/status/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const AppMiningIncomplete = () => (
6060
</MakerCardText>
6161
)
6262

63-
const Status = ({ app, status }) => {
63+
const Status = ({ app }) => {
6464
const isReady = isMiningReady(app)
6565

6666
return (

0 commit comments

Comments
 (0)