Skip to content

Commit 124eb95

Browse files
committed
fix: Update KeyValueTable component to return false instead of true when isValuePresentAtRow is true
1 parent dbc66c6 commit 124eb95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Components/KeyValueTable/KeyValueTable.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const KeyValueTable = <K extends string>({
123123
({ id, data }) => id === rowId && data[secondHeaderKey].value,
124124
)
125125
if (isValuePresentAtRow) {
126-
return true
126+
return false
127127
}
128128
}
129129
}

0 commit comments

Comments
 (0)