Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"typedoc-plugin-merge-modules": "^7.0.0",
"typedoc-plugin-missing-exports": "^4.1.3",
"typedoc-plugin-umami-analytics": "^1.0.1",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"files": [
Expand Down
4 changes: 0 additions & 4 deletions src/components/FontAwesomeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,9 @@ export const FontAwesomeIcon = React.forwardRef<
// @ts-expect-error since `key` can be any of the keys in FontAwesomeIconProps,
// TypeScript widens the type of the `obj[key]` lookups to a union of all possible values,
// which will not correctly overlap each other.
// TODO: remove eslint-disable when react hooks rules are fixed properly to stop false flags on refs
// eslint-disable-next-line react-hooks/refs
extraProps[key] = allProps[key]
}

// TODO: remove eslint-disable when react hooks rules are fixed properly to stop false flags on refs
// eslint-disable-next-line react-hooks/refs
return makeReactConverter(abstract[0], extraProps)
})

Expand Down
Loading