fix: fixed api error message in createSite.ts

This commit is contained in:
jack rosenberg
2025-08-12 17:34:40 +02:00
committed by GitHub
parent 9ccf77b99c
commit 03c8d82471

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