Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
keisuke-umezawa committed Nov 8, 2024
1 parent 4b933f9 commit d9e26e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tslib/react/src/utils/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type AxisInfo = {
// biome-ignore lint/suspicious/noExplicitAny: Accept any array.
const unique = (array: any[]) => {
const knownElements = new Map()
for (const e of someArray) {
for (const e of array) {
knownElements.set(e, true)
}
return Array.from(knownElements.keys())
Expand Down

0 comments on commit d9e26e8

Please sign in to comment.