mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove stubbed confirmation codes
This commit is contained in:
parent
30155f1321
commit
13cbdbbf25
1 changed files with 1 additions and 6 deletions
|
|
@ -104,12 +104,7 @@ export default function EmailsPage(): JSX.Element {
|
|||
}
|
||||
|
||||
const sortedEmailAddresses = useMemo(() => {
|
||||
return emailAddresses
|
||||
.sort((a, b) => a.createdAt.localeCompare(b.createdAt))
|
||||
.map((em) => {
|
||||
em.confirmationCode = '123445'
|
||||
return em
|
||||
})
|
||||
return emailAddresses.sort((a, b) => a.createdAt.localeCompare(b.createdAt))
|
||||
}, [emailAddresses])
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue