[core] Reduce chunk to fit option title into button

This commit is contained in:
Andriy
2023-07-28 17:22:28 +03:00
parent 5471b412d9
commit 8071863037
+1 -1
View File
@@ -184,7 +184,7 @@ public class SettingsHandler : CommonHandler
var keyboardLayout = _options.ToAsyncEnumerable()
.SelectAwait(async x => await GetKeyboardButton(x))
.ToEnumerable()
.Chunk(3);
.Chunk(2);
return new InlineKeyboardMarkup(keyboardLayout);
}