Skip to content

Commit

Permalink
Fix compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
seionmoya committed Oct 2, 2024
1 parent 765e89f commit a51f162
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Fuyu.Launcher/Store/GamesUseCase/Effects.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ namespace Fuyu.Launcher.Store.GamesUseCase
public class Effects
{
[EffectMethod]
public async Task HandleGetGamesAction(GetGamesAction action, IDispatcher dispatcher)
public Task HandleGetGamesAction(GetGamesAction action, IDispatcher dispatcher)
{
var games = RequestService.GetGames();
dispatcher.Dispatch(new GetGamesResultAction(games));
return Task.CompletedTask;
}
}
}

0 comments on commit a51f162

Please sign in to comment.