Skip to content

Commit

Permalink
🐛 Fix flipped from to in gift page
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Mar 12, 2024
1 parent 63b6944 commit e4a6e4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/nft-book-store/gift/[classId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
}"
>
<UFormGroup label="Default Recipient Name" :required="true">
<UTextarea v-model="defaultFromName" placeholder="Fellow Reader" />
<UTextarea v-model="defaultToName" placeholder="Fellow Reader" />
</UFormGroup>

<UFormGroup label="Default Gift Message" :required="true">
<UTextarea v-model="defaultMessage" placeholder="Thank you for your support" />
</UFormGroup>

<UFormGroup label="Gift Giver’s Name" :required="true">
<UTextarea v-model="defaultToName" placeholder="Your name" />
<UTextarea v-model="defaultFromName" placeholder="Your name" />
</UFormGroup>

<UFormGroup>
Expand Down

0 comments on commit e4a6e4e

Please sign in to comment.