We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db84f09 commit 00b7907Copy full SHA for 00b7907
packages/browser/src/plugins/in-app-plugin/events.ts
@@ -3,7 +3,6 @@ export enum InAppEvents {
3
MessageDismissed = 'in-app:message-dismissed',
4
MessageError = 'in-app:message-error',
5
MessageAction = 'in-app:message-action',
6
- MessageVisible = 'in-app:message-visible'
7
}
8
9
export const allEvents:string[] = Object.values(InAppEvents);
@@ -33,8 +32,6 @@ export function gistToCIO(gistEvent:string): string {
33
32
return InAppEvents.MessageError;
34
case 'messageAction':
35
return InAppEvents.MessageAction;
36
- case 'messageVisible':
37
- return InAppEvents.MessageVisible;
38
default:
39
return "";
40
0 commit comments