We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78344d commit 3b8a858Copy full SHA for 3b8a858
src/components/TncModal.tsx
@@ -153,18 +153,17 @@ const TncModal: React.FC<TncModalProps> = (props) => {
153
try {
154
if (!address) {
155
156
- toast.error('No Address to sing TnC');
+ toast.error('No Address to sign TnC');
157
}
158
159
return;
160
161
mixpanel.track('TnC agreed', { address });
162
163
- toast.success('TnC Signing Started');
164
-
165
setIsSigningPending(true);
166
signTypedData();
167
} catch (error) {
+ toast.error('TnC Signing Error');
168
console.log('TnC Signing Error', error);
169
170
};
0 commit comments