From 153e4479e90e8d5980be2926ad8f060ae9f66d7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Curda?= Date: Thu, 5 Dec 2024 15:57:53 +0100 Subject: [PATCH] fixup! Feat(web-react): Introduce Navigation #DS-1524 --- .../Navigation/__tests__/useNavigationStyleProps.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/web-react/src/components/Navigation/__tests__/useNavigationStyleProps.test.ts b/packages/web-react/src/components/Navigation/__tests__/useNavigationStyleProps.test.ts index e97ec0dd50..a1efc2675e 100644 --- a/packages/web-react/src/components/Navigation/__tests__/useNavigationStyleProps.test.ts +++ b/packages/web-react/src/components/Navigation/__tests__/useNavigationStyleProps.test.ts @@ -3,8 +3,7 @@ import { useNavigationStyleProps } from '../useNavigationStyleProps'; describe('useNavigationStyleProps', () => { it('should return defaults', () => { - const props = {}; - const { result } = renderHook(() => useNavigationStyleProps(props)); + const { result } = renderHook(() => useNavigationStyleProps()); expect(result.current.classProps).toBe('Navigation'); });