From 0bc8a592a6ad47de0674396b3e1c2dc30159fedb Mon Sep 17 00:00:00 2001 From: Ayaan Zaidi Date: Mon, 2 Feb 2026 09:07:25 +0530 Subject: [PATCH] fix: inline telegram thread scope type --- src/telegram/bot/helpers.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/telegram/bot/helpers.ts b/src/telegram/bot/helpers.ts index 6915f68d65..784551ef04 100644 --- a/src/telegram/bot/helpers.ts +++ b/src/telegram/bot/helpers.ts @@ -12,11 +12,9 @@ import { formatLocationText, type NormalizedLocation } from "../../channels/loca const TELEGRAM_GENERAL_TOPIC_ID = 1; -export type TelegramThreadScope = "dm" | "forum" | "none"; - export type TelegramThreadSpec = { id?: number; - scope: TelegramThreadScope; + scope: "dm" | "forum" | "none"; }; /**