Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/cli-kit/src/public/node/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ export async function loadEnvironment(
return undefined
}
const file = await TomlFile.read(filePath)
const environmentsJson = file.content as Environments
const environments = environmentsJson.environments
const environments = (file.content as Environments).environments
if (!environments) {
renderWarningIfNeeded(
{
Expand Down
Loading