Skip to content

Commit ccfadd2

Browse files
committed
Update GitHelpers.cs
1 parent b64c494 commit ccfadd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Files.App/Utils/Git/GitHelpers.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ internal static class GitHelpers
3434

3535
private static readonly PullOptions _pullOptions = new();
3636

37-
private static readonly string _clientId = AppLifecycleHelper.AppEnvironment is not AppEnvironment.Dev
38-
? CLIENT_ID_SECRET
39-
: string.Empty;
37+
private static readonly string _clientId = AppLifecycleHelper.AppEnvironment is AppEnvironment.Dev
38+
? string.Empty
39+
: CLIENT_ID_SECRET;
4040

4141
private static readonly SemaphoreSlim GitOperationSemaphore = new SemaphoreSlim(1, 1);
4242

0 commit comments

Comments
 (0)