+// )
+
+export interface DiscoverContentProps {
+ activeTabId: string // This should be one of the CherryStoreType values, e.g., "Assistant"
+ // selectedSubcategoryId: string
+ currentCategory: Category | undefined
+}
+
+const DiscoverContent: React.FC = ({ activeTabId, currentCategory }) => {
+ const location = useLocation() // To see the current path for debugging or more complex logic
+
+ if (!currentCategory || !activeTabId) {
+ return