Skip to content

Commit 0f28ea8

Browse files
committed
fix: biome error
1 parent 40a65e7 commit 0f28ea8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

frontend/src/components/valuecell/modal/login-modal.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,14 @@ export default function LoginModal({ children }: LoginModalProps) {
114114
2 * 60 * 1000,
115115
);
116116
} 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-
});
117+
toast.error(
118+
t("auth.login.errors.failed.title", { provider: providerLabel }),
119+
{
120+
description: t("auth.login.errors.failed.description", {
121+
info: JSON.stringify(error),
122+
}),
123+
},
124+
);
122125
}
123126
};
124127

0 commit comments

Comments
 (0)