diff --git a/src/components/Event/EventActionSection.vue b/src/components/Event/EventActionSection.vue index a7b855ff4..89596cefa 100644 --- a/src/components/Event/EventActionSection.vue +++ b/src/components/Event/EventActionSection.vue @@ -413,7 +413,7 @@ const { identities } = useCurrentUserIdentities(); const event = computed(() => props.event); -const identity = ref(null); +const identity = computed(() => props.currentActor); const ableToReport = computed((): boolean => { return ( @@ -848,8 +848,6 @@ const cancelAnonymousParticipation = async (): Promise => { }; onMounted(async () => { - identity.value = props.currentActor; - try { if (window.isSecureContext) { anonymousParticipation.value = await anonymousParticipationConfirmed();