Browse Source

fix(ui): fallback to an empty array. Closes #3116

pull/3119/head
Gabe Kangas 3 years ago
parent
commit
1ea9a548e1
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 2
      web/components/ui/Content/Content.tsx

2
web/components/ui/Content/Content.tsx

@ -245,7 +245,7 @@ export const Content: FC = () => { @@ -245,7 +245,7 @@ export const Content: FC = () => {
showNotifyReminder={showNotifyReminder}
setShowNotifyModal={setShowNotifyModal}
disableNotifyReminderPopup={disableNotifyReminderPopup}
externalActions={externalActions}
externalActions={externalActions || []}
setExternalActionToDisplay={setExternalActionToDisplay}
setShowFollowModal={setShowFollowModal}
externalActionSelected={externalActionSelected}

Loading…
Cancel
Save