修复useSearchParams()编译错误添加 Suspense 边界&切换标签页时移除不必要的 mac 参数

This commit is contained in:
wmp
2025-09-17 10:37:13 +08:00
parent 3322d6a8e4
commit cb29e913f8
4 changed files with 41 additions and 11 deletions

View File

@@ -148,12 +148,12 @@ model Session {
model VerificationCode {
id Int @id @default(autoincrement())
phone String
account String
code String
type String
expiresAt DateTime
createdAt DateTime @default(now())
@@index([phone, type])
@@index([account, type])
@@map("verification_codes")
}