Skip to content

Commit

Permalink
resolve types
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarpenter committed Dec 20, 2024
1 parent 9585a38 commit 81c230a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/clerk-js/src/ui/contexts/components/SignIn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const useSignInContext = (): SignInContextType => {
const signUpContinueUrl = buildURL({ base: signUpUrl, hashPath: '/continue' }, { stringify: true });

return {
...ctx,
...(ctx as SignInCtx),
transferable: ctx.transferable ?? true,
componentName,
signUpUrl,
Expand All @@ -119,5 +119,5 @@ export const useSignInContext = (): SignInContextType => {
queryParams,
initialValues: { ...ctx.initialValues, ...initialValuesFromQueryParams },
authQueryString: redirectUrls.toSearchParams().toString(),
};
} as SignInContextType;
};

0 comments on commit 81c230a

Please sign in to comment.