From 8536c6af8b4bd55f5466b807aa22faf45f436f9d Mon Sep 17 00:00:00 2001 From: HariPrasad-rgb Date: Sat, 9 May 2026 19:36:14 -0700 Subject: [PATCH] fix: remove leading space in Authority URL in console-daemon --- console-daemon/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console-daemon/Program.cs b/console-daemon/Program.cs index d92b14f..1c388cb 100644 --- a/console-daemon/Program.cs +++ b/console-daemon/Program.cs @@ -6,7 +6,7 @@ var config = new { // Full directory URL, in the form of https://login.microsoftonline.com/ - Authority = " https://login.microsoftonline.com/Enter the tenant ID obtained from the Microsoft Entra admin center", + Authority = "https://login.microsoftonline.com/Enter the tenant ID obtained from the Microsoft Entra admin center", // Enter the client ID obtained from the Microsoft Entra admin center ClientId = "Enter the client ID obtained from the Microsoft Entra admin center", // Client secret 'Value' (not its ID) from 'Client secrets' in the Microsoft Entra admin center