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");
});
wondering how I can pass the callender into the scene with the name "collectLaunchData". Can anyone assist with this?