From 3213aab259ba807803cbfe91f2b890346044a14f Mon Sep 17 00:00:00 2001 From: ITQ Date: Tue, 26 Mar 2024 09:20:17 +0300 Subject: [PATCH] fix: Fixed callback data for note --- app/keyboards/note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/keyboards/note.py b/app/keyboards/note.py index ec99501..b0b05a8 100644 --- a/app/keyboards/note.py +++ b/app/keyboards/note.py @@ -39,7 +39,7 @@ def get(travel_id: int, note): builder.row( types.InlineKeyboardButton( text="⬅️", - callback_data=f"travel_detail_{travel_id}", + callback_data=f"travel_notes_page_{travel_id}_0", ), )