feat: add width, height as props to App.tsx (#1871)

This commit is contained in:
Aakansha Doshi 2020-07-07 20:40:39 +05:30 committed by GitHub
parent b1261eea70
commit 9351b2821c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 184 additions and 27 deletions

View file

@ -16,8 +16,8 @@ export const actionGoToCollaborator = register({
return {
appState: {
...appState,
scrollX: normalizeScroll(window.innerWidth / 2 - point.x),
scrollY: normalizeScroll(window.innerHeight / 2 - point.y),
scrollX: normalizeScroll(appState.width / 2 - point.x),
scrollY: normalizeScroll(appState.height / 2 - point.y),
// Close mobile menu
openMenu: appState.openMenu === "canvas" ? null : appState.openMenu,
},