We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e968eac commit 7931379Copy full SHA for 7931379
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@equinor/amplify-component-lib",
3
- "version": "10.8.2",
+ "version": "10.8.3",
4
"description": "Frontend Typescript components for the Amplify team",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/organisms/Faq/Search.tsx
@@ -18,7 +18,7 @@ interface SearchProps {
18
}
19
20
export const Search: FC<SearchProps> = ({ placeholder }) => {
21
- const navigate = useNavigate({ from: '/faq' });
+ const navigate = useNavigate();
22
const { search } = useSearch({ strict: false });
23
24
const handleOnChange = (event: ChangeEvent<HTMLInputElement>) => {
0 commit comments