Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
frol authored Dec 13, 2023
1 parent decf990 commit 0ceb734
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/devhub/entity/post/Post.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ const onLike = () => {
keys: [context.accountId + "/index/notify"],
},
gas: Big(10).pow(14),
deposit: Big(10).pow(5),
deposit: Big(10).pow(22),
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/devhub/entity/post/PostEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const onSubmit = () => {
keys: [context.accountId + "/index/notify"],
},
gas: Big(10).pow(14),
deposit: Big(10).pow(5),
deposit: Big(10).pow(22),
});
}
Near.call(txn);
Expand Down
2 changes: 1 addition & 1 deletion src/devhub/page/create.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const onSubmit = () => {
keys: [context.accountId + "/index/notify"],
},
gas: Big(10).pow(14),
deposit: Big(10).pow(5),
deposit: Big(10).pow(22),
});
}
Near.call(txn);
Expand Down

0 comments on commit 0ceb734

Please sign in to comment.