Skip to content

Commit

Permalink
feat: add tooltip for approver field and update placeholder text in I…
Browse files Browse the repository at this point in the history
…nitializeEscrowForm
  • Loading branch information
JoelVR17 committed Feb 18, 2025
1 parent e15f597 commit 1c56793
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ const InitializeEscrowForm = () => {
render={({ field }) => (
<FormItem>
<FormLabel className="flex items-center justify-between">
<span className="flex items-center">Approver</span>
<span className="flex items-center">
Approver
<TooltipInfo content="Address of the approver for this escrow." />
</span>
<Switch
checked={showSelect.approver}
onCheckedChange={(value) => toggleField("approver", value)}
Expand Down Expand Up @@ -221,7 +224,7 @@ const InitializeEscrowForm = () => {
/>
) : (
<Input
placeholder="Enter service provider address"
placeholder="Enter platform address"
{...field}
onChange={(e) => {
field.onChange(e);
Expand Down

0 comments on commit 1c56793

Please sign in to comment.