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

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."
)
);
}