We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a65e7 commit 0f28ea8Copy full SHA for 0f28ea8
frontend/src/components/valuecell/modal/login-modal.tsx
@@ -114,11 +114,14 @@ export default function LoginModal({ children }: LoginModalProps) {
114
2 * 60 * 1000,
115
);
116
} catch (error) {
117
- toast.error(t("auth.login.errors.failed.title", { provider: providerLabel }), {
118
- description: t("auth.login.errors.failed.description", {
119
- info: JSON.stringify(error),
120
- }),
121
- });
+ toast.error(
+ t("auth.login.errors.failed.title", { provider: providerLabel }),
+ {
+ description: t("auth.login.errors.failed.description", {
+ info: JSON.stringify(error),
122
+ }),
123
+ },
124
+ );
125
}
126
};
127
0 commit comments