Fix bug in this.isRawModalVisible
Signed-off-by: ajbura <ajbura@gmail.com>
This commit is contained in:
parent
7c6a12ea8e
commit
4803d48ec7
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
import React from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './RawModal.scss';
|
import './RawModal.scss';
|
||||||
|
|
||||||
|
@ -26,7 +26,9 @@ function RawModal({
|
||||||
modalClass += 'raw-modal__small ';
|
modalClass += 'raw-modal__small ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
navigation.setIsRawModalVisible(isOpen);
|
navigation.setIsRawModalVisible(isOpen);
|
||||||
|
}, [isOpen]);
|
||||||
|
|
||||||
const modalOverlayClass = (overlayClassName !== null) ? `${overlayClassName} ` : '';
|
const modalOverlayClass = (overlayClassName !== null) ? `${overlayClassName} ` : '';
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue