diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-20 14:47:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-20 14:47:42 +0200 |
commit | 74738b49933eeadb6e837711ef1a1d0718829b6c (patch) | |
tree | 9600d09c99cf8b7a0b9162dcc68f4c17a65158e5 /app/javascript | |
parent | 839f893168ab221b08fa439012189e6c29a2721a (diff) |
Fix error on profile in web UI (#19396)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/account_timeline/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/account_timeline/index.js b/app/javascript/mastodon/features/account_timeline/index.js index 437cee95c..bfb5f7c80 100644 --- a/app/javascript/mastodon/features/account_timeline/index.js +++ b/app/javascript/mastodon/features/account_timeline/index.js @@ -28,6 +28,7 @@ const mapStateToProps = (state, { params: { acct, id, tagged }, withReplies = fa if (!accountId) { return { isLoading: true, + statusIds: emptyList, }; } |