summaryrefslogtreecommitdiff
path: root/packages/cli/src/config/auth.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/config/auth.ts')
-rw-r--r--packages/cli/src/config/auth.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/cli/src/config/auth.ts b/packages/cli/src/config/auth.ts
index 4561f5d6..0f97b4d5 100644
--- a/packages/cli/src/config/auth.ts
+++ b/packages/cli/src/config/auth.ts
@@ -9,7 +9,10 @@ import { loadEnvironment } from './settings.js';
export const validateAuthMethod = (authMethod: string): string | null => {
loadEnvironment();
- if (authMethod === AuthType.LOGIN_WITH_GOOGLE || AuthType.CLOUD_SHELL) {
+ if (
+ authMethod === AuthType.LOGIN_WITH_GOOGLE ||
+ authMethod === AuthType.CLOUD_SHELL
+ ) {
return null;
}