From 699d2721f2dfb70ec07426a0505090f8250d1bfa Mon Sep 17 00:00:00 2001 From: Matthieu 'JP' DERASSE Date: Fri, 9 Jun 2023 07:37:08 +0000 Subject: [PATCH] feat(price-list): Show inline keyboard on price & list response --- bot/bot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/bot.go b/bot/bot.go index 7649664..252b0de 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -159,7 +159,7 @@ func price(c tele.Context) error { strings.Join(availabilities.Results[0].Paint, " and "), availabilities.Results[0].Price, availabilities.Results[0].GetOrderLink(), - ), + ), &homeMenu, ) } @@ -185,5 +185,5 @@ func list(c tele.Context) error { ) } - return c.Reply(availabilitiesStr) + return c.Reply(availabilitiesStr, &homeMenu) }