Skip to content
Merged
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: 2 additions & 1 deletion apps/cli/lib/src/commands/status_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'package:celest_cli/src/commands/authenticate.dart';
import 'package:celest_cli/src/commands/celest_command.dart';
import 'package:celest_cli/src/context.dart';
import 'package:celest_cli/src/init/project_init.dart';
import 'package:celest_cli/src/utils/recase.dart';
import 'package:mason_logger/mason_logger.dart';

final class StatusCommand extends CelestCommand with Configure, Authenticate {
Expand All @@ -26,7 +27,7 @@ final class StatusCommand extends CelestCommand with Configure, Authenticate {
await assertAuthenticated();
await configure();

final projectName = celestProject.projectName;
final projectName = celestProject.projectName.paramCase;
final projectEnvironment = await cloud.projects.environments
.get('projects/$projectName/environments/production');
if (projectEnvironment == null) {
Expand Down
Loading