From 95aa5480a0ef4a6ad43266f93eceba745f15ced8 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 18 Feb 2026 17:46:40 +0000 Subject: [PATCH] fix(telegram): correct onboarding import for chat lookup helper --- src/channels/plugins/onboarding/telegram.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels/plugins/onboarding/telegram.ts b/src/channels/plugins/onboarding/telegram.ts index e9910270fc9..c35140915c0 100644 --- a/src/channels/plugins/onboarding/telegram.ts +++ b/src/channels/plugins/onboarding/telegram.ts @@ -7,9 +7,9 @@ import { resolveDefaultTelegramAccountId, resolveTelegramAccount, } from "../../../telegram/accounts.js"; -import { fetchTelegramChatId } from "../../../telegram/api.js"; import { formatDocsLink } from "../../../terminal/links.js"; import type { WizardPrompter } from "../../../wizard/prompts.js"; +import { fetchTelegramChatId } from "../../telegram/api.js"; import type { ChannelOnboardingAdapter, ChannelOnboardingDmPolicy } from "../onboarding-types.js"; import { addWildcardAllowFrom, mergeAllowFromEntries, promptAccountId } from "./helpers.js";