diff --git a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx index 6983948ac..a84f5cae4 100644 --- a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx +++ b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx @@ -15,7 +15,7 @@ const tagIcons = { [types.CLICK_RAGE]: , [types.CRASH]: , [types.TAP_RAGE]: , - [types.INCIDENTS]: , + [types.INCIDENT]: , } as Record; function SessionTags() { diff --git a/frontend/app/types/session/issue.ts b/frontend/app/types/session/issue.ts index b8c3e364d..3972eecef 100644 --- a/frontend/app/types/session/issue.ts +++ b/frontend/app/types/session/issue.ts @@ -9,7 +9,7 @@ export const types = { MOUSE_THRASHING: 'mouse_thrashing', TAP_RAGE: 'tap_rage', DEAD_CLICK: 'dead_click', - INCIDENTS: 'incidents', + INCIDENT: 'incident', } as const; type TypeKeys = keyof typeof types; @@ -76,11 +76,12 @@ export const issues_types = [ icon: 'cursor-trash', }, { - type: types.INCIDENTS, + type: types.INCIDENT, visible: true, order: 7, name: 'Incidents', icon: 'funnel/message-circle-warning', + // isEvent: false, } // { 'type': 'memory', 'visible': true, 'order': 4, 'name': 'High Memory', 'icon': 'funnel/sd-card' }, // { 'type': 'vault', 'visible': true, 'order': 5, 'name': 'Vault', 'icon': 'safe' },