Skip to content

Commit

Permalink
fix: rule validation
Browse files Browse the repository at this point in the history
  • Loading branch information
robot9706 committed Dec 10, 2024
1 parent f62a28c commit c0876dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/crux/src/domain/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ const testRules = (rules: [string, EnvironmentRule][], arr: UniqueKeyValue[], fi
const envErrors = arr
.map((it, index) => {
const { key } = it
const rule = ruleMap[key]
const rule = ruleMap.get(key)
if (!rule) {
return null
}
Expand Down

0 comments on commit c0876dd

Please sign in to comment.