From 1ea9a548e14f09bc7ce48840cdf6cfdd52dabce1 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 27 Jun 2023 16:18:53 -0700 Subject: [PATCH] fix(ui): fallback to an empty array. Closes #3116 --- web/components/ui/Content/Content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/ui/Content/Content.tsx b/web/components/ui/Content/Content.tsx index d64eb9754..e4f137b17 100644 --- a/web/components/ui/Content/Content.tsx +++ b/web/components/ui/Content/Content.tsx @@ -245,7 +245,7 @@ export const Content: FC = () => { showNotifyReminder={showNotifyReminder} setShowNotifyModal={setShowNotifyModal} disableNotifyReminderPopup={disableNotifyReminderPopup} - externalActions={externalActions} + externalActions={externalActions || []} setExternalActionToDisplay={setExternalActionToDisplay} setShowFollowModal={setShowFollowModal} externalActionSelected={externalActionSelected}