Merge pull request #1262 from jackrosenberg/patch-1

fix: fixed api error message in createSite.ts
This commit is contained in:
Owen Schwartz 2025-08-12 20:36:26 -07:00 committed by GitHub
commit 54b3c92953
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -144,7 +144,7 @@ export async function createSite(
return next(
createHttpError(
HttpCode.BAD_REQUEST,
"Invalid subnet format. Please provide a valid CIDR notation."
"Invalid address format. Please provide a valid IP notation."
)
);
}