const calendar = new Calendar(bot, {
date_format: "MMM D, YYYY HH:mm", // 24-hour format
language: "en",
start_week_day: 1,
bot_api: "telegraf",
time_selector_mod: true,
time_range: "00:00-23:59",
time_step: "60m",
});
bot.action("launchListingBtn", async (ctx) => {
ctx.scene.enter("collectLaunchData");
});
i want to passs callender in that scene named “collectLaunchData” anyone know how to do that ??