fix: move search from header to footer - fixed #2033

This commit is contained in:
liyasthomas
2021-12-21 06:40:39 +05:30
parent 4de953fe57
commit 2c2bc141e8
4 changed files with 23 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ interface TeamNameBrand {
export const TeamNameCodec = t.brand(
t.string,
(x): x is t.Branded<string, TeamNameBrand> => x.trim().length > 6,
(x): x is t.Branded<string, TeamNameBrand> => x.trim().length >= 6,
"TeamName"
)