From 970621c4598adacfb74e71e9b88733c4ef76e2fb Mon Sep 17 00:00:00 2001 From: shuaiplus <2327005759@qq.com> Date: Sat, 23 May 2026 02:07:59 +0800 Subject: [PATCH] fix: remove optional TOTP_SECRET from environment bindings --- src/types/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index 47d41d3..1eafc9c 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -10,7 +10,6 @@ export interface Env { // Optional fallback for attachment/send file storage (no credit card required). ATTACHMENTS_KV?: KVNamespace; JWT_SECRET: string; - TOTP_SECRET?: string; } export type UserRole = 'admin' | 'user';