diff --git a/plugins/contact-resources/src/components/MemberPresenter.svelte b/plugins/contact-resources/src/components/MemberPresenter.svelte index c7404e5aaf..a0ff4307b1 100644 --- a/plugins/contact-resources/src/components/MemberPresenter.svelte +++ b/plugins/contact-resources/src/components/MemberPresenter.svelte @@ -24,7 +24,8 @@ export let inline: boolean = false export let accent: boolean = false - const contactRef = getClient().findOne(contact.class.Contact, { _id: value.contact }) + const contactRef = + value?.contact !== undefined ? getClient().findOne(contact.class.Contact, { _id: value.contact }) : undefined