Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/559-error-flashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tguntenaar authored Dec 18, 2023
2 parents 50b62d4 + 705132c commit 3ac95cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @ailisp @frol
* @ailisp @frol @Tguntenaar @elliotBraem
1 change: 1 addition & 0 deletions src/devhub/entity/post/Post.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ const onLike = () => {
keys: [context.accountId + "/index/notify"],
},
gas: Big(10).pow(14),
deposit: Big(10).pow(22),
});
}

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

0 comments on commit 3ac95cb

Please sign in to comment.