|
@@ -335,7 +335,9 @@ export function isItemActive(
|
|
|
location.pathname.includes('/alerts/') &&
|
|
|
!location.pathname.startsWith('/settings/')) ||
|
|
|
(item?.label === 'Releases' && location.pathname.includes('/release-thresholds/')) ||
|
|
|
- (item?.label === 'Performance' && location.pathname.includes('/performance/'))
|
|
|
+ (item?.label === 'Performance' &&
|
|
|
+ location.pathname.includes('/performance/') &&
|
|
|
+ !location.pathname.startsWith('/settings/'))
|
|
|
);
|
|
|
}
|
|
|
|