fix(account): add placeholder URL for type inference in linkSocialAccount response (#3199)

This commit is contained in:
Bereket Engida
2025-06-27 20:22:16 -07:00
committed by GitHub
parent fece011149
commit c1d4f467ff

View File

@@ -256,6 +256,7 @@ export const linkSocialAccount = createAuthEndpoint(
if (hasBeenLinked) {
return c.json({
redirect: false,
url: "", // this is for type inference
status: true,
});
}
@@ -316,6 +317,7 @@ export const linkSocialAccount = createAuthEndpoint(
return c.json({
redirect: false,
url: "", // this is for type inference
status: true,
});
}