Skip to content

Commit

Permalink
fix: remove 'Preview' label from OIDC COMPASS-7666 (#5930)
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax authored Jun 17, 2024
1 parent f3a0158 commit 4be36b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/compass-settings/src/components/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const SettingsModal: React.FunctionComponent<SettingsModalProps> = ({
isAIFeatureEnabled
) {
settings.push({
name: 'OIDC (Preview)',
name: 'OIDC',
component: OIDCSettings,
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const authMechanisms: {
id: 'DEFAULT',
},
{
title: 'OIDC (Preview)',
title: 'OIDC',
id: 'MONGODB-OIDC',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const options: TabOption[] = [
component: AuthenticationDefault,
},
{
title: 'OIDC (Preview)',
title: 'OIDC',
id: 'MONGODB-OIDC',
component: AuthenticationOidc,
},
Expand Down

0 comments on commit 4be36b4

Please sign in to comment.