From d4a880362d61e1c7f0d92d2f6bd4ca5817d5b2ff Mon Sep 17 00:00:00 2001 From: Steven Lindsay Date: Thu, 7 Nov 2024 17:42:12 +0000 Subject: [PATCH] fix: Correct annotation enum --- src/core/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/events.ts b/src/core/events.ts index 75aab81d..2152dc61 100644 --- a/src/core/events.ts +++ b/src/core/events.ts @@ -40,7 +40,7 @@ export enum ChatMessageActions { MessageAnnotationCreate = 'annotation.create', /** Action applied to a deleted annotation. */ - MessageAnnotationUpdate = 'annotation.delete', + MessageAnnotationDelete = 'annotation.delete', /** Action applied to a meta occupancy message. */ MessageMetaOccupancy = 'meta.occupancy',