Skip to content

Commit

Permalink
fixup! correct tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Mar 1, 2024
1 parent c6eacbe commit c29d250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/Recordings/ArchivedRecordingsTable.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const mockUploadedRecordingLabels = [
];
export const convertLabels = (kv: KeyValue[]): object => {
const out = {};
for (let e of kv) {
for (const e of kv) {
out[e.key] = e.value;
}
return out;
Expand Down

0 comments on commit c29d250

Please sign in to comment.