Remove the popular subscriptions table

We probably need a standalone page for this in the future, but
removing this now allows people to use this page to see their
subscriptions on web.
This commit is contained in:
Jackson Harper 2023-01-09 09:33:34 +08:00
parent 982bfe586c
commit 05a61968d9

View file

@ -62,24 +62,6 @@ export default function SubscriptionsPage(): JSX.Element {
rows={rows}
onDelete={setConfirmUnsubscribeName}
/>
{/* TODO: Dynamically loaded from API response */}
<Table
heading={'Popular Newsletters'}
headers={['Substack', 'Axios', 'Bloomberg']}
rows={
new Map([
[
'0',
[
'https://substack.com/',
'https://www.axios.com/newsletters',
'https://www.bloomberg.com/account/newsletters',
],
],
])
}
/>
</PrimaryLayout>
)
}