Skip to content

Commit

Permalink
chore: removed unnecessary "isMasked" property from providerConfigFields
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelJacobStephen committed Mar 7, 2024
1 parent 213605c commit 11808ac
Showing 1 changed file with 2 additions and 6 deletions.
Expand Up @@ -119,27 +119,23 @@ type FieldKey =
type Field = {
name: string;
key: FieldKey;
isMasked: boolean;
};
const providerConfigFields = reactive<Field[]>([
{
name: t('configs.auth_providers.client_id'),
key: 'client_id',
isMasked: true,
},
{
name: t('configs.auth_providers.client_secret'),
key: 'client_secret',
isMasked: true,
},
{
name: t('configs.auth_providers.callback_url'),
key: 'callback_url',
isMasked: true,
},
{ name: t('configs.auth_providers.scope'), key: 'scope', isMasked: true },
{ name: t('configs.auth_providers.tenant'), key: 'tenant', isMasked: true },
{ name: t('configs.auth_providers.scope'), key: 'scope' },
{ name: t('configs.auth_providers.tenant'), key: 'tenant' },
]);
const maskState = reactive({
Expand Down

0 comments on commit 11808ac

Please sign in to comment.