-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix universal breaking from merging mobile into dev #344
Conversation
@@ -123,6 +125,7 @@ export const ModalContainer: FC<Props> = ({ item }) => { | |||
}; | |||
|
|||
const closeModal = () => { | |||
console.log('close', item.id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this console.log
packages/gui/states/modal/index.ts
Outdated
modalState.map.set(safeId, { | ||
id: safeId, | ||
bindingRectangle: layout, | ||
bindingRef: bindingRef && (ref(bindingRef) as never as RefObject<View>), | ||
// bindingRef: bindingRef && (ref(bindingRef) as never as RefObject<View>), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this if no-longer needed
packages/gui/states/modal/index.ts
Outdated
...restConfigs, | ||
}); | ||
}); | ||
}, | ||
hide: (id: string): void => { | ||
console.log('calling hide', id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this console.log
3fc6d74
to
292a28f
Compare
No description provided.