Skip to content

Commit

Permalink
clients/article: editable preview email receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
zegl committed Dec 13, 2023
1 parent cfbec11 commit ddc31ab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion clients/apps/web/src/components/Feed/PostToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,11 @@ const PreviewEmailModal = ({ article, hideModal }: PreviewEmailModalProps) => {
) : null}
</div>
<div className="flex flex-col gap-y-6">
<Input type="email" value={previewEmail} />
<Input
type="email"
value={previewEmail}
onChange={(e) => setPreviewEmail(e.target.value)}
/>
<div className="mt-2 flex flex-row items-center gap-x-2">
<Button
className="self-start"
Expand Down

0 comments on commit ddc31ab

Please sign in to comment.