Skip to content

Commit

Permalink
positions and charts to ZMA vnas data
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcoombs2000 committed Mar 5, 2024
1 parent 58cc29b commit 84fc5a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Features/VnasData/ScheduledJobs/FetchAndCacheVnasData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public async Task Invoke()
{
// This method forces service to fetch and cache, and we can discard value
logger.LogInformation("Fetching all VNAS Data for ZMA");
await vnasDataService.ForceCache("ZOA");
await vnasDataService.ForceCache("ZMA");
}
}
2 changes: 1 addition & 1 deletion Features/VnasData/UI/Pages/Positions.razor
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

protected override async Task OnInitializedAsync()
{
var fetchedFacilities = await VnasData.GetArtccFacilities("ZOA");
var fetchedFacilities = await VnasData.GetArtccFacilities("ZMA");
_positions = fetchedFacilities is not null ? fetchedFacilities.SelectMany(f => f.Positions).ToList() : new List<Position>();
}

Expand Down
2 changes: 1 addition & 1 deletion Features/VnasData/UI/Pages/VideoMaps.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

protected override async Task OnInitializedAsync()
{
var fetchedMaps = await VnasData.GetArtccVideoMaps("ZOA");
var fetchedMaps = await VnasData.GetArtccVideoMaps("ZMA");
_maps = fetchedMaps is not null ? fetchedMaps.ToList() : new List<VideoMap>();
}

Expand Down

0 comments on commit 84fc5a3

Please sign in to comment.