Skip to content

Commit

Permalink
fix: add missing assignment operator to variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mukul-tyagi08 committed Nov 5, 2024
1 parent 333aea0 commit 969c0fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class ClientRegistrationProviderComponent implements OnInit, OnDestroy {
},
];
public renewClientSecretMethods = ['POST', 'PATCH', 'PUT'];
public renewClientSecretEndpointUrlExample: 'https://authorization_server/oidc/dcr/{#client_id}/renew_secret';
public renewClientSecretEndpointUrlExample: string = 'https://authorization_server/oidc/dcr/{#client_id}/renew_secret';

public formInitialValues: unknown;

Expand Down

0 comments on commit 969c0fa

Please sign in to comment.