From 3975e341b9397916f48e1623d5707e6b2fc64ea0 Mon Sep 17 00:00:00 2001 From: Sultan Al-Maari Date: Tue, 3 Sep 2024 16:03:59 +0200 Subject: [PATCH] fix: Fix issue with opening a conversation notification when the app is closed (#10695) * fix: Attempt to fix issue with closed app notification * add suspense to inbox * Revert "add suspense to inbox" This reverts commit 001934df87192f90dafa1f3b41d47a2bd395d260. --- src/app/Components/Containers/Inbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Components/Containers/Inbox.tsx b/src/app/Components/Containers/Inbox.tsx index e67780a6636..a3fb8072741 100644 --- a/src/app/Components/Containers/Inbox.tsx +++ b/src/app/Components/Containers/Inbox.tsx @@ -78,7 +78,7 @@ export class Inbox extends React.Component { 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 (