We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec207ed commit a6ea704Copy full SHA for a6ea704
frameworks/keyed/react-starbeam/src/data.js
@@ -80,7 +80,7 @@ export class TableData {
80
81
select = (id) => this.selected = id;
82
remove = (idToRemove) => {
83
- let index = this.data.findIndex(datum => datum.id = idToRemove);
+ let index = this.data.findIndex(datum => datum.id === idToRemove);
84
85
this.data.splice(index, 1);
86
};
0 commit comments