diff --git a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/Dots.tsx b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/Dots.tsx index 51db59065..a2c38b447 100644 --- a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/Dots.tsx +++ b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/Dots.tsx @@ -19,6 +19,7 @@ export function NetworkElement({ item, createEventClickHandler }: CommonProps) { const name = item.name || ''; return ( {item.success ? 'Slow resource: ' : '4xx/5xx Error:'} @@ -70,6 +71,7 @@ export function FrustrationElement({ item, createEventClickHandler }: CommonProp const elData = getFrustration(item); return ( {elData.name} @@ -89,6 +91,7 @@ export function FrustrationElement({ item, createEventClickHandler }: CommonProp export function StackEventElement({ item, createEventClickHandler }: CommonProps) { return ( {item.name || 'Stack Event'} @@ -108,6 +111,7 @@ export function StackEventElement({ item, createEventClickHandler }: CommonProps export function PerformanceElement({ item, createEventClickHandler }: CommonProps) { return ( {item.type} @@ -127,6 +131,7 @@ export function PerformanceElement({ item, createEventClickHandler }: CommonProp export function ExceptionElement({ item, createEventClickHandler }: CommonProps) { return ( {'Exception'} diff --git a/frontend/app/components/Session_/Subheader.js b/frontend/app/components/Session_/Subheader.js index ce8cd0464..664c364c7 100644 --- a/frontend/app/components/Session_/Subheader.js +++ b/frontend/app/components/Session_/Subheader.js @@ -1,5 +1,5 @@ import { ShareAltOutlined } from '@ant-design/icons'; -import { Button as AntButton, Popover, Switch, Tooltip } from 'antd'; +import { Button as AntButton, Switch, Tooltip } from 'antd'; import cn from 'classnames'; import { Link2 } from 'lucide-react'; import { observer } from 'mobx-react-lite';