Skip to content

Commit

Permalink
fix: Fix issue with opening a conversation notification when the app …
Browse files Browse the repository at this point in the history
…is closed (#10695)

* fix: Attempt to fix issue with closed app notification

* add suspense to inbox

* Revert "add suspense to inbox"

This reverts commit 001934d.
  • Loading branch information
MrSltun committed Sep 3, 2024
1 parent 7db6bc2 commit 3975e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Components/Containers/Inbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class Inbox extends React.Component<Props, State> {
this.setState({ activeTab: tabName as Tab })
}
render() {
const hasActiveBids = (this.props.me.myBids?.active ?? []).length > 0
const hasActiveBids = (this.props.me?.myBids?.active ?? []).length > 0
const initialPageName = hasActiveBids ? "bids" : "inquiries"

return (
Expand Down

0 comments on commit 3975e34

Please sign in to comment.