Pass this middleware correctly in saas

This commit is contained in:
Owen
2025-10-13 12:27:45 -07:00
parent c000c4502f
commit b6b9c71c5e
3 changed files with 3 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ export async function verifyValidLicense(
next: NextFunction
) {
try {
if (build !== "saas") {
if (build != "enterprise") {
return next();
}