Skip to content

Commit

Permalink
Transfers: fixed crashes when swiching to transfers
Browse files Browse the repository at this point in the history
This was introduced by previous commit
  • Loading branch information
warpdesign committed May 13, 2024
1 parent 7a8f8ac commit 6485af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const App = observer(() => {
{splitView && <SideView viewState={views[1]} hide={!isExplorer} />}
<Downloads hide={isExplorer} />
</div>
{cache.cursor && <PreviewDialog />}
{cache?.cursor && <PreviewDialog />}
</React.Fragment>
</Provider>
)
Expand Down

0 comments on commit 6485af8

Please sign in to comment.