diff --git a/packages/admin-next/dashboard/src/routes/sales-channels/sales-channel-list/components/sales-channel-list-table.tsx b/packages/admin-next/dashboard/src/routes/sales-channels/sales-channel-list/components/sales-channel-list-table.tsx index 6a4e8a908e..5ac1cdeff7 100644 --- a/packages/admin-next/dashboard/src/routes/sales-channels/sales-channel-list/components/sales-channel-list-table.tsx +++ b/packages/admin-next/dashboard/src/routes/sales-channels/sales-channel-list/components/sales-channel-list-table.tsx @@ -1,5 +1,5 @@ import { PencilSquare, Trash } from "@medusajs/icons" -import { SalesChannelDTO } from "@medusajs/types" +import { HttpTypes } from "@medusajs/types" import { Button, Container, @@ -60,7 +60,7 @@ export const SalesChannelListTable = () => {
- {t("salesChannels.domain")} + {t("salesChannels.domain")} {t("salesChannels.subtitle")} @@ -90,7 +90,7 @@ export const SalesChannelListTable = () => { const SalesChannelActions = ({ salesChannel, }: { - salesChannel: SalesChannelDTO + salesChannel: HttpTypes.AdminSalesChannel }) => { const { t } = useTranslation() const prompt = usePrompt() @@ -148,7 +148,7 @@ const SalesChannelActions = ({ ) } -const columnHelper = createColumnHelper() +const columnHelper = createColumnHelper() const useColumns = () => { const base = useSalesChannelTableColumns()