Skip to content

Commit

Permalink
Fix form update wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
FPT-NMTung committed Jul 14, 2024
1 parent b1e1aec commit f88afaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "budgoose",
"private": true,
"version": "0.1.11",
"version": "0.1.12",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/walletPage/UpdateWallet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ const UpdateWallet = (props) => {
rules={{
required: 'Field is required',
min: {
value: 1,
message: 'Must larger than 0'
value: 0,
message: 'Must larger or equal 0'
}
}}
isDisabled={props.mode === 'edit'}
Expand Down

0 comments on commit f88afaf

Please sign in to comment.