fix: fixed stage

This commit is contained in:
Pavel-Savely Savianok 2025-07-16 20:36:30 +03:00
parent fcdc4476df
commit 0826eb5898

View File

@ -47,7 +47,8 @@ public class PrepareUserState(PrepareUserService prepareUserService, MenuService
{
if (!user.IsLogged)
{
prepareUserService.Auth(update, ct);
await prepareUserService.Auth(update, ct);
return;
}
await menuService.RenderMenu(update, ct); //boilerplate
}