File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @clerk/clerk-js " : patch
3+ " @clerk/types " : patch
4+ ---
5+
6+ Drop ` experimental_force_oauth_first ` & ` experimental__forceOauthFirst ` from ` DisplayConfig `
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ export class DisplayConfig extends BaseResource implements DisplayConfigResource
7272 this . captchaPublicKey = data . captcha_public_key ;
7373 this . supportEmail = data . support_email || '' ;
7474 this . clerkJSVersion = data . clerk_js_version ;
75- this . experimental__forceOauthFirst = data . experimental_force_oauth_first || false ;
7675 this . organizationProfileUrl = data . organization_profile_url ;
7776 this . createOrganizationUrl = data . create_organization_url ;
7877 this . afterLeaveOrganizationUrl = data . after_leave_organization_url ;
Original file line number Diff line number Diff line change @@ -72,9 +72,8 @@ const createBaseDisplayConfig = (): DisplayConfigJSON => {
7272 create_organization_url : 'https://accounts.clerk.com/create-organization' ,
7373 after_leave_organization_url : 'https://dashboard.clerk.com' ,
7474 after_create_organization_url : 'https://dashboard.clerk.com' ,
75- support_email : null ,
75+ support_email : '' ,
7676 branded : true ,
77- experimental_force_oauth_first : false ,
7877 clerk_js_version : '4' ,
7978 } ;
8079} ;
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ export interface DisplayConfigJSON {
2929 theme : DisplayThemeJSON ;
3030 user_profile_url : string ;
3131 clerk_js_version ?: string ;
32- experimental_force_oauth_first ?: boolean ;
3332 organization_profile_url : string ;
3433 create_organization_url : string ;
3534 after_leave_organization_url : string ;
You can’t perform that action at this time.
0 commit comments