Skip to content

Commit 4be36b4

Browse files
authored
fix: remove 'Preview' label from OIDC COMPASS-7666 (#5930)
1 parent f3a0158 commit 4be36b4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/compass-settings/src/components/modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const SettingsModal: React.FunctionComponent<SettingsModalProps> = ({
8585
isAIFeatureEnabled
8686
) {
8787
settings.push({
88-
name: 'OIDC (Preview)',
88+
name: 'OIDC',
8989
component: OIDCSettings,
9090
});
9191
}

packages/connection-form/src/components/advanced-options-tabs/authentication-tab/authentication-tab.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const authMechanisms: {
4949
id: 'DEFAULT',
5050
},
5151
{
52-
title: 'OIDC (Preview)',
52+
title: 'OIDC',
5353
id: 'MONGODB-OIDC',
5454
},
5555
{

packages/connection-form/src/components/advanced-options-tabs/authentication-tab/authentication-tab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const options: TabOption[] = [
4040
component: AuthenticationDefault,
4141
},
4242
{
43-
title: 'OIDC (Preview)',
43+
title: 'OIDC',
4444
id: 'MONGODB-OIDC',
4545
component: AuthenticationOidc,
4646
},

0 commit comments

Comments
 (0)