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 ac92d16 commit c874650Copy full SHA for c874650
module/src/auth.ts
@@ -135,7 +135,7 @@ export async function loginWithCode(email: string, code: string) {
135
});
136
} catch (e) {
137
if (e instanceof AuthRejectedError) throw e;
138
- else throw new Error(`Failed to refresh token: ${asErrorLike(e).message || e}`);
+ else throw new Error(`Failed to login with code: ${asErrorLike(e).message || e}`);
139
}
140
141
0 commit comments