Fix: Small hotfixes (#4570)

This commit is contained in:
Mike
2025-04-23 12:57:57 +02:00
committed by GitHub
parent 11e1fcd85c
commit 2c43e9b9b0
2 changed files with 1 additions and 2 deletions
@@ -256,7 +256,6 @@ export const workspaceReachedPlanLimit = (
const limits = planConfig.limits
if (!limits.projectCount || !limits.modelCount) return false
if (!projectCount || !modelCount) return false
return projectCount === limits.projectCount || modelCount === limits.modelCount
}