fix EventType enum

This commit is contained in:
Emily
2024-06-02 16:34:20 +02:00
parent 2b8723d93a
commit a9e16f82ef

View File

@@ -1,5 +1,5 @@
export enum EventType {
VISIT = 1,
EVENT = 2
VISIT = 0,
EVENT = 1
}