Skip to content

Commit

Permalink
fix(clerk-js,types): Remove after_sign_out_url as it not returned by …
Browse files Browse the repository at this point in the history
…FAPI (#1121)
  • Loading branch information
desiprisg authored Apr 28, 2023
1 parent 6121622 commit d87493d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/clerk-js/src/core/resources/DisplayConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class DisplayConfig extends BaseResource implements DisplayConfigResource
this.userProfileUrl = data.user_profile_url;
this.afterSignInUrl = data.after_sign_in_url;
this.afterSignUpUrl = data.after_sign_up_url;
this.afterSignOutUrl = data.after_sign_out_url;
this.afterSignOutOneUrl = data.after_sign_out_one_url;
this.afterSignOutAllUrl = data.after_sign_out_all_url;
this.afterSwitchSessionUrl = data.after_switch_session_url;
Expand Down
1 change: 0 additions & 1 deletion packages/types/src/displayConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export interface DisplayConfigJSON {
after_sign_in_url: string;
after_sign_out_all_url: string;
after_sign_out_one_url: string;
after_sign_out_url: string;
after_sign_up_url: string;
after_switch_session_url: string;
application_name: string;
Expand Down

0 comments on commit d87493d

Please sign in to comment.