use 6 digit codes for bridge

This commit is contained in:
itsrubberduck
2026-02-16 15:47:12 +01:00
parent a495077476
commit 3d5a18df6a
4 changed files with 114 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ export function normalizeBridgeToken(input: unknown) {
if (!token) {
return null
}
if (token.length < 8 || token.length > 256) {
if (token.length < 6 || token.length > 256) {
return null
}
return token