make more_info and show_projects on separate lines

This commit is contained in:
Akulij 2025-04-30 13:56:29 +03:00
parent 0c71fd3796
commit 53edb54118

View File

@ -611,14 +611,14 @@ async fn make_start_buttons(db: &mut DB) -> BotResult<InlineKeyboardMarkup> {
)] )]
}) })
.collect(); .collect();
buttons.push(vec![InlineKeyboardButton::callback(
"More info",
CallbackStore::new(Callback::MoreInfo)
.store(db)
.await?
.get_id(),
)]);
buttons.push(vec![ buttons.push(vec![
InlineKeyboardButton::callback(
"More info",
CallbackStore::new(Callback::MoreInfo)
.store(db)
.await?
.get_id(),
),
create_callback_button( create_callback_button(
"show_projects", "show_projects",
CallbackStore::new(Callback::ProjectPage { id: 1 }), CallbackStore::new(Callback::ProjectPage { id: 1 }),