diff --git a/frontend/app/components/Dashboard/components/AddCardSection/AddCardSection.tsx b/frontend/app/components/Dashboard/components/AddCardSection/AddCardSection.tsx index e6f576f05..4ceecc846 100644 --- a/frontend/app/components/Dashboard/components/AddCardSection/AddCardSection.tsx +++ b/frontend/app/components/Dashboard/components/AddCardSection/AddCardSection.tsx @@ -144,20 +144,20 @@ export const tabItems: Record = { }; export const mobileTabItems: Record = { - [CATEGORIES.product_analytics]: [ - { - icon: , - title: 'Trends', - type: TIMESERIES, - description: 'Track session and user trends over time.' - }, - { - icon: , - title: 'Funnels', - type: FUNNEL, - description: 'Visualize user progression through critical steps.' - } - ], + // [CATEGORIES.product_analytics]: [ + // { + // icon: , + // title: 'Trends', + // type: TIMESERIES, + // description: 'Track session and user trends over time.' + // }, + // { + // icon: , + // title: 'Funnels', + // type: FUNNEL, + // description: 'Visualize user progression through critical steps.' + // } + // ], [CATEGORIES.web_analytics]: [ { icon: , @@ -244,11 +244,11 @@ const AddCardSection = observer( const { showModal } = useModal(); const { metricStore, dashboardStore, projectsStore } = useStore(); const isMobile = projectsStore.isMobile; - const [tab, setTab] = React.useState('product_analytics'); + const [tab, setTab] = React.useState(isMobile ? 'web_analytics' : 'product_analytics'); const options = isMobile ? [ - { label: 'Product Analytics', value: 'product_analytics' }, + // { label: 'Product Analytics', value: 'product_analytics' }, { label: 'Mobile Analytics', value: 'web_analytics' } ] : [