Skip to content

Commit

Permalink
Fix error rendering share info while a share reciever has been deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan committed Jul 6, 2023
1 parent ba7c427 commit 928dc86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app-files/src/store/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ export default {
return Promise.allSettled(shareQueriesPromises).then(() => {
context.commit(
'OUTGOING_SHARES_SET',
shares.filter((s) => s.outgoing)
shares.filter((s) => s.outgoing && s.collaborator.name !== undefined)
)
context.commit(
'INCOMING_SHARES_SET',
Expand Down

0 comments on commit 928dc86

Please sign in to comment.