Cannot read properties of undefined (reading 'reachGoal')

This commit is contained in:
Zakhar
2026-09-05 10:59:33 +03:00
parent 0b76df4c81
commit b917f5df72
4 changed files with 11 additions and 10 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ export const NotEnoughPopup = ({onClose}: any) => {
const [value, setValue] = useState('');
const [sent, setSent] = useState(false);
return <Overlay>
<Window>
return <Overlay onClick={() => onClose()}>
<Window onClick={event => event.stopPropagation()}>
<CloseButton type="button" aria-label="Закрыть" onClick={() => onClose()}>
&times;
</CloseButton>