Skip to content

Commit

Permalink
Remove explicit type in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga committed Jan 19, 2024
1 parent 6e87a01 commit bfca832
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/react/src/Header/Header.test.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { render, screen } from '@testing-library/react'
import { createRef } from 'react'
import { Header } from './Header'
import type { HeaderProps } from './Header'
import '@testing-library/jest-dom'

describe('Header', () => {
const defaultProps: HeaderProps = {
const defaultProps = {
logoLink: '/',
}

Expand Down

0 comments on commit bfca832

Please sign in to comment.