Skip to content

Commit

Permalink
Update placeholder with defaultValue in EditLink component
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Mar 30, 2024
1 parent 1d0e136 commit b4820ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/links/edit-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const EditLink = (props: EditLinkProps) => {
<FormControl>
<Textarea
{...field}
placeholder={props.link.description ?? "Description"}
defaultValue={props.link.description ?? "Description"}
disabled={loading}
/>
</FormControl>
Expand Down

0 comments on commit b4820ff

Please sign in to comment.