fix: typo

This commit is contained in:
diced
2026-04-05 12:30:53 -07:00
parent 669c61eae0
commit 00f4254227

View File

@@ -39,7 +39,7 @@ export default typedPlugin(
.refine((str) => !str.startsWith('/'), 'Vanity cannot start with a slash.')
.refine(
(str) =>
!reservedRoutes.some((roure) => {
!reservedRoutes.some((route) => {
const nStr = `/${str}`.toLowerCase();
const nRoute = route.toLowerCase();