Skip to content

Commit

Permalink
Fix remaining incorrect default imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjtc committed Sep 15, 2023
1 parent b58d409 commit 2334675
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions src/_interop/dtlEventMap.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
import * as named from '@testing-library/dom/dist/event-map.js'

import def, * as named from '@testing-library/dom/dist/event-map.js'

export default def ?? named
export default named
6 changes: 2 additions & 4 deletions src/_interop/dtlHelpers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
import * as named from '@testing-library/dom/dist/helpers.js'

import def, * as named from '@testing-library/dom/dist/helpers.js'

export default def ?? named
export default named

0 comments on commit 2334675

Please sign in to comment.