chore: remove MVP positioning and align plan defaults

This commit is contained in:
sirily
2026-03-10 14:58:01 +03:00
parent ba029d8f3f
commit bec00d2c9b
11 changed files with 73 additions and 26 deletions

View File

@@ -153,7 +153,7 @@ function readTelegramMode(env: NodeJS.ProcessEnv, key: string): "polling" {
const value = readString(env, key);
if (value !== "polling") {
throw new Error(`Environment variable ${key} must be "polling" for MVP`);
throw new Error(`Environment variable ${key} must be "polling"`);
}
return value;