Ensure story buttons are clickable despite being in a no-drag region

This commit is contained in:
trevor-signal 2023-06-06 09:53:10 -04:00 committed by GitHub
parent 6f3b56c6fa
commit b2f5febbf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 1 deletions

View file

@ -171,6 +171,7 @@ export function App({
'dark-theme': theme === ThemeType.dark,
})}
>
{contents}
<ToastManager
OS={OS}
hideToast={hideToast}
@ -185,7 +186,6 @@ export function App({
{isShowingStoriesView && renderStories(toggleStoriesView)}
{hasSelectedStoryData &&
renderStoryViewer(() => viewStory({ closeViewer: true }))}
{contents}
</div>
</TitleBarContainer>
);