diff --git a/backend/api/Controllers/MissionController.cs b/backend/api/Controllers/MissionController.cs index 3d6ade26a..0cf4a23ba 100644 --- a/backend/api/Controllers/MissionController.cs +++ b/backend/api/Controllers/MissionController.cs @@ -404,10 +404,6 @@ [FromBody] ScheduledMissionQuery scheduledMissionQuery if (scheduledMissionQuery.AreaName != null) { area = await _areaService.ReadByInstallationAndName(scheduledMissionQuery.InstallationCode, scheduledMissionQuery.AreaName); - if (area == null) - { - return NotFound($"Could not find area by installation '{scheduledMissionQuery.InstallationCode}' and name '{scheduledMissionQuery.AreaName}'"); - } } var source = await _sourceService.CheckForExistingEchoSource(scheduledMissionQuery.EchoMissionId);