We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dce2a5 commit fdf19f2Copy full SHA for fdf19f2
app/routes/recipients+/__editor.tsx
@@ -67,7 +67,7 @@ export function RecipientEditor({
67
return (
68
<div className="absolute inset-0">
69
<div className="flex justify-end gap-2 p-6">
70
- {recipient?.verified ? null : <VerifyForm />}
+ {recipient && !recipient.verified ? <VerifyForm /> : null}
71
{recipient?.id ? <DeleteRecipient id={recipient.id} /> : null}
72
</div>
73
<Form
0 commit comments