Skip to content

Commit

Permalink
Merge pull request #4 from klm-lab/dev
Browse files Browse the repository at this point in the history
fix LV
  • Loading branch information
klm-lab authored Oct 2, 2023
2 parents 3845ab3 + 703a9a5 commit 85c5e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const setTrackingMatching = (entry: Input, matchKey: string[]) => {

// Loop validation
const lV = (state: ValidationStateType, data: ValidationStateType) => {
for (let dataKey in data) {
for (const dataKey in data) {
const key = dataKey as keyof ValidationStateType;
if (
state[key] &&
Expand Down

0 comments on commit 85c5e9c

Please sign in to comment.