Skip to content

Commit

Permalink
fix: console integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darcyYe committed Nov 8, 2024
1 parent 71427b0 commit f2bec19
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ export type ApplicationMetadata = {
description: string;
};

export const applicationTypesMetadata = Object.entries(ApplicationType).map(([key, value]) => ({
type: value,
name: `${key} app`,
description: `This is a ${key} app`,
})) satisfies ApplicationMetadata[];
export const applicationTypesMetadata = Object.entries(ApplicationType)
.filter(([key]) => key !== ApplicationType.SAML)
.map(([key, value]) => ({
type: value,
name: `${key} app`,
description: `This is a ${key} app`,
})) satisfies ApplicationMetadata[];

0 comments on commit f2bec19

Please sign in to comment.