SeasonFinishWindow: Remove async from OnRenewContext() to avoid warnings

This commit is contained in:
2024-03-16 13:44:08 +01:00
parent 9353581a56
commit 5715c41a2e

View File

@ -19,8 +19,9 @@ namespace Elwig.Windows {
SeasonInput.Value = Utils.CurrentLastSeason;
}
protected override async Task OnRenewContext() {
protected override Task OnRenewContext() {
SeasonInput_ValueChanged(null, null);
return Task.CompletedTask;
}
private async void SeasonInput_ValueChanged(object? sender, RoutedEventArgs? evt) {