Refactor: replace appId with clientId in authentication client creation

This commit is contained in:
2026-01-27 06:25:33 +01:00
parent e044813240
commit 347aee10fd

View File

@@ -10,7 +10,7 @@ if (config.clientSecret) {
// Create the client
const credential = new ClientSecretCredential(
config.tenantId,
config.appId,
config.clientId,
config.clientSecret,
);