Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem committed Jan 16, 2025
1 parent 3cca766 commit b6ebd55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/package/src/lib/resolveFluenceEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import { color } from "@oclif/color";

import { CHAIN_ENV, DEFAULT_PUBLIC_FLUENCE_ENV } from "../common.js";
import { CHAIN_ENV } from "../common.js";

import { chainFlags } from "./chainFlags.js";
import { commandObj } from "./commandObj.js";
Expand Down Expand Up @@ -66,7 +66,7 @@ export async function ensureFluenceEnv(): Promise<FluenceEnv> {

async function fluenceEnvPrompt(
message = "Select Fluence Environment to use",
defaultVal: FluenceEnv = DEFAULT_PUBLIC_FLUENCE_ENV,
defaultVal: FluenceEnv = process.env.FLUENCE_ENV,
): Promise<FluenceEnv> {
return list({
message,
Expand Down

0 comments on commit b6ebd55

Please sign in to comment.