diff --git a/clients/apps/web/src/components/Checkout/CheckoutLinksView.tsx b/clients/apps/web/src/components/Checkout/CheckoutLinksView.tsx deleted file mode 100644 index f52dca26b7..0000000000 --- a/clients/apps/web/src/components/Checkout/CheckoutLinksView.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import { SettingsOutlined } from '@mui/icons-material' -import { CheckoutLink } from '@polar-sh/api' -import Button from '@polar-sh/ui/components/atoms/Button' -import { List, ListItem } from '@polar-sh/ui/components/atoms/List' -import Pill from '@polar-sh/ui/components/atoms/Pill' -import { twMerge } from 'tailwind-merge' -import ProductPriceLabel from '../Products/ProductPriceLabel' - -const LinkList = ({ - links, - current, - onSelect, -}: { - links: CheckoutLink[] - current: string | undefined - onSelect: (link: CheckoutLink, showForm: boolean) => void -}) => { - return ( -
- {link.label || 'No label'} -
-