From a66bd3bd6bc2676f42e47adf8457709ccebd16ef Mon Sep 17 00:00:00 2001 From: Kasper Fabricius Kristensen <45367945+kasperkristensen@users.noreply.github.com> Date: Mon, 19 Aug 2024 14:56:26 +0200 Subject: [PATCH] fix(dashboard): Use proper heading size (#8658) --- .../components/sales-channel-list-table.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()