From acc0cc40abfc427c5f5e8e88ac7c9f36be49f23e Mon Sep 17 00:00:00 2001 From: trevor-anderson Date: Tue, 20 Feb 2024 12:06:27 -0500 Subject: [PATCH] feat: rm tab helpers (now in comps/Tabs/) --- .../CoreItemsListView/ListHeader/tabA11yProps.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/layouts/CoreItemsListView/ListHeader/tabA11yProps.ts diff --git a/src/layouts/CoreItemsListView/ListHeader/tabA11yProps.ts b/src/layouts/CoreItemsListView/ListHeader/tabA11yProps.ts deleted file mode 100644 index ca3f83e1..00000000 --- a/src/layouts/CoreItemsListView/ListHeader/tabA11yProps.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { getTabA11yProps } from "@components/Tabs/tabA11yProps"; -import { LIST_VIEW_LIST_NAMES } from "../types"; - -/** - * ListView: Tab a11y Props - * - Tabs comp: `MobileListHeaderTabs` - * - Tabpanel comp: `VirtualizedMuiList` (see `CoreItemsListView`) - */ -export const { - tabProps: listViewTabA11yProps, - tabPanelProps: listViewTabPanelA11yProps, - tabsWrapperProps: listViewTabsWrapperA11yProps, -} = getTabA11yProps({ - tabLabels: LIST_VIEW_LIST_NAMES, - tabsWrapperLabel: "Inbox and Sent list view tabs", -});