Skip to content

Commit

Permalink
chore: bump @build-with-yi/wagmi package version
Browse files Browse the repository at this point in the history
  • Loading branch information
blakecduncan committed Aug 12, 2024
1 parent 3cd11fa commit 51a098a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@build-with-yi/wagmi": "0.0.10",
"@build-with-yi/wagmi": "0.0.11",
"@mantine/core": "^7.11.2",
"@mantine/hooks": "^7.11.2",
"@mantine/notifications": "^7.7.1",
Expand Down
7 changes: 5 additions & 2 deletions src/components/Modal/RegisterModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ function RegisterPaymaster() {
const register = useCallback(async () => {
try {
if (!isCabEnabled) {
await enableCab();
await enableCab({
tokens: [{ name: "6TEST", networks: [11155420, 84532] }],
});
setActiveStep(2);
}
} catch (error) {
Expand All @@ -82,7 +84,8 @@ function RegisterPaymaster() {
}
notifications.show({
color: "green",
message: "CAB enabled, please wait a few moments for the registration to complete.",
message:
"CAB enabled, please wait a few moments for the registration to complete.",
});
};
return (
Expand Down

0 comments on commit 51a098a

Please sign in to comment.