Skip to content

Commit

Permalink
chore: fix message of toast on success sign message (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizAsFight authored Oct 14, 2024
1 parent 269ff93 commit ff13416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/react-app/src/components/sign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Sign({ isSigning, setIsSigning }: Props) {
setToast({
open: true,
type: 'success',
children: resp || null,
children: 'Message signed',
});
setLoading(false);
setIsSigning(false);
Expand Down

0 comments on commit ff13416

Please sign in to comment.