diff --git a/packages/web/pages/settings/emails/recent.tsx b/packages/web/pages/settings/emails/recent.tsx index 4f083505b..98b33b937 100644 --- a/packages/web/pages/settings/emails/recent.tsx +++ b/packages/web/pages/settings/emails/recent.tsx @@ -156,18 +156,6 @@ export default function RecentEmails(): JSX.Element { applyStoredTheme(false) const sortedRecentEmails = useMemo(() => { - return [ - { - id: 'id', - from: 'jackson-from', - to: 'jacksonh', - subject: 'this is a test email', - type: 'article', - text: 'this is the text', - html: 'this is boldthis is a linkmore text', - createdAt: '2023-02-01', - }, - ] return recentEmails.sort((a, b) => b.createdAt.localeCompare(a.createdAt)) }, [recentEmails])