From 2e4e428f576d81e675fc909a64e6e1f281324772 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 11 Oct 2024 16:34:00 +0200 Subject: [PATCH] change(ui): tap rage icon in session tags --- .../components/SessionTags/SessionTags.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx index 773e0c12e..5ffaf3741 100644 --- a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx +++ b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx @@ -1,6 +1,6 @@ import { issues_types, types } from 'Types/session/issue'; import { Segmented } from 'antd'; -import { Angry, CircleAlert, Skull, WifiOff } from 'lucide-react'; +import { Angry, CircleAlert, HandIcon, Skull, WifiOff } from 'lucide-react'; import { observer } from 'mobx-react-lite'; import React from 'react'; import { useStore } from 'App/mstore'; @@ -21,7 +21,8 @@ const tagIcons = { [types.JS_EXCEPTION]: , [types.BAD_REQUEST]: , [types.CLICK_RAGE]: , - [types.CRASH]: + [types.CRASH]: , + [types.TAP_RAGE]: , } as Record; const SessionTags: React.FC = () => {