diff --git a/packages/pl-fe/src/actions/draft-statuses.ts b/packages/pl-fe/src/actions/draft-statuses.ts index 1947bbb1f..953419f30 100644 --- a/packages/pl-fe/src/actions/draft-statuses.ts +++ b/packages/pl-fe/src/actions/draft-statuses.ts @@ -24,10 +24,12 @@ const fetchDraftStatuses = () => const accountUrl = getAccount(state, state.me as string)!.url; return KVStore.getItem>(`drafts:${accountUrl}`).then((statuses) => { - dispatch({ - type: DRAFT_STATUSES_FETCH_SUCCESS, - statuses, - }); + if (statuses) { + dispatch({ + type: DRAFT_STATUSES_FETCH_SUCCESS, + statuses, + }); + } }).catch(() => {}); };