Fix scroll handling with modals

This commit is contained in:
Claire
2021-07-13 11:07:16 +02:00
parent 6e3d5cbca2
commit 99f28c17de
5 changed files with 5 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ export default class Mastodon extends React.PureComponent {
}
shouldUpdateScroll (_, { location }) {
return !(location.state && location.state.mastodonModalOpen);
return !(location.state?.mastodonModalKey);
}
render () {