From 08b692c9b76d4b6fe3e39db270f1b764dd82dbaa Mon Sep 17 00:00:00 2001 From: LinaYahya Date: Tue, 17 Oct 2023 10:22:46 +0200 Subject: [PATCH] fix: triggers types to camelcase --- src/constants/triggers.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/constants/triggers.ts b/src/constants/triggers.ts index 460b1698..2f94601e 100644 --- a/src/constants/triggers.ts +++ b/src/constants/triggers.ts @@ -1,6 +1,6 @@ export enum Triggers { - COLLECTION_VIEW = 'collection-view', - ITEM_VIEW = 'item-view', - LINK_OPEN = 'link-open', - ITEM_DOWNLOAD = 'item-download', + CollectionView = 'collection-view', + ItemView = 'item-view', + LinkOpen = 'link-open', + ItemDownload = 'item-download', }