mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove debug
This commit is contained in:
parent
253297aeda
commit
95427184f8
1 changed files with 0 additions and 12 deletions
|
|
@ -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: '<b>this is bold</b><a href="https://omnivore.app">this is a link</a>more text',
|
||||
createdAt: '2023-02-01',
|
||||
},
|
||||
]
|
||||
return recentEmails.sort((a, b) => b.createdAt.localeCompare(a.createdAt))
|
||||
}, [recentEmails])
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue