diff --git a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
index 107067b24..22c2cb68f 100644
--- a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
+++ b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
@@ -88,7 +88,7 @@ function LiveSessionList(props: Props) {
- Cobrowse
+ Co-Browse
{/* {numberWithCommas(total)} */}
diff --git a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
index d7754fdce..9d36115ee 100644
--- a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
+++ b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
@@ -132,6 +132,7 @@ function SelectDateRange(props: Props) {
) {
return false;
}
+ console.log('outside')
setIsCustom(false);
}}
>
diff --git a/frontend/app/layout/SideMenu.tsx b/frontend/app/layout/SideMenu.tsx
index ecbea406a..e96cdc297 100644
--- a/frontend/app/layout/SideMenu.tsx
+++ b/frontend/app/layout/SideMenu.tsx
@@ -65,11 +65,10 @@ function SideMenu(props: Props) {
if (item.hidden) return item;
const isHidden = [
- (item.key === MENU.STATS && modules.includes(MODULES.ASSIST_STATS)),
(item.key === MENU.RECOMMENDATIONS && modules.includes(MODULES.RECOMMENDATIONS)),
(item.key === MENU.FEATURE_FLAGS && modules.includes(MODULES.FEATURE_FLAGS)),
(item.key === MENU.NOTES && modules.includes(MODULES.NOTES)),
- (item.key === MENU.LIVE_SESSIONS || item.key === MENU.RECORDINGS || item.key === MENU.STATS) && modules.includes(MODULES.ASSIST),
+ (item.key === MENU.LIVE_SESSIONS && modules.includes(MODULES.ASSIST)),
(item.key === MENU.SESSIONS && modules.includes(MODULES.OFFLINE_RECORDINGS)),
(item.key === MENU.ALERTS && modules.includes(MODULES.ALERTS)),
(item.isAdmin && !isAdmin),
@@ -107,8 +106,6 @@ function SideMenu(props: Props) {
[MENU.VAULT]: () => withSiteId(routes.bookmarks(), siteId),
[MENU.NOTES]: () => withSiteId(routes.notes(), siteId),
[MENU.LIVE_SESSIONS]: () => withSiteId(routes.assist(), siteId),
- [MENU.STATS]: () => withSiteId(routes.assistStats(), siteId),
- [MENU.RECORDINGS]: () => withSiteId(routes.recordings(), siteId),
[MENU.DASHBOARDS]: () => withSiteId(routes.dashboard(), siteId),
[MENU.CARDS]: () => withSiteId(routes.metrics(), siteId),
[MENU.ALERTS]: () => withSiteId(routes.alerts(), siteId),
diff --git a/frontend/app/layout/data.ts b/frontend/app/layout/data.ts
index eed5fd5c3..812e0e385 100644
--- a/frontend/app/layout/data.ts
+++ b/frontend/app/layout/data.ts
@@ -42,8 +42,6 @@ export const enum MENU {
BOOKMARKS = 'bookmarks',
NOTES = 'notes',
LIVE_SESSIONS = 'live-sessions',
- RECORDINGS = 'recordings',
- STATS = 'assist-stats',
DASHBOARDS = 'dashboards',
CARDS = 'cards',
FUNNELS = 'funnels',
@@ -70,12 +68,10 @@ export const categories: Category[] = [
]
},
{
- title: 'Assist',
+ title: '',
key: 'assist',
items: [
- { label: 'Cobrowse', key: MENU.LIVE_SESSIONS, icon: 'broadcast' },
- { label: 'Recordings', key: MENU.RECORDINGS, icon: 'record-btn', isEnterprise: true },
- { label: 'Reports', key: MENU.STATS, icon: 'file-bar-graph', isEnterprise: true }
+ { label: 'Co-Browse', key: MENU.LIVE_SESSIONS, icon: 'broadcast' },
]
},
{