Skip to content

Commit

Permalink
(fix) rename variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Achintha Isuru committed Nov 14, 2023
1 parent 77bcc6d commit b57acb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/console/src/extensions/configs/application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ export const applicationConfig: ApplicationConfig = {
tenantDomain: string
): number => {
if (clientId === getTryItClientId(tenantDomain)) {
return ApplicationManagementConstants.TRY_IT_SIGNIN_STEP; // For Asgardeo Try It App
return ApplicationManagementConstants.TRY_IT_SIGNIN_TAB; // For Asgardeo Try It App
} else {
return ApplicationManagementConstants.APPLICATION_SIGNIN_STEP; // For other applications
return ApplicationManagementConstants.APPLICATION_SIGNIN_TAB; // For other applications
}
},
getTabExtensions: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,12 +465,12 @@ export class ApplicationManagementConstants {
/**
* Sign in step of the try it application.
*/
public static readonly TRY_IT_SIGNIN_STEP: number = 2;
public static readonly TRY_IT_SIGNIN_TAB: number = 2;

/**
* Sign in step of other applications.
*/
public static readonly APPLICATION_SIGNIN_STEP: number = 3;
public static readonly APPLICATION_SIGNIN_TAB: number = 3;
}

export enum ShareWithOrgStatus {
Expand Down

0 comments on commit b57acb6

Please sign in to comment.