We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f0c98a commit f459e74Copy full SHA for f459e74
apps/web/src/components/send.tsx
@@ -41,7 +41,10 @@ export const Send = ({
41
} else {
42
if (response.status === 429) {
43
const { error } = (await response.json()) as { error: string };
44
- toast.error(error);
+ console.error(error);
45
+ toast.error(
46
+ 'Too many test emails were sent, try again in a few seconds.',
47
+ );
48
49
toast.error('Something went wrong. Please try again.');
50
}
0 commit comments