Skip to content

Commit

Permalink
Merge pull request #29 from wednesday-solutions/feat/fix-warning
Browse files Browse the repository at this point in the history
fix: fix warning for wrong import LaunchDetailsProps from .. to ../types
  • Loading branch information
alichherawalla authored May 23, 2022
2 parents f3ae9a4 + 3b3b023 commit f204179
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/containers/LaunchDetails/tests/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
import React from 'react';
import { renderProvider, timeout } from '@utils/testUtils';
// import { fireEvent } from '@testing-library/dom'
import { LaunchDetailsProps, LaunchDetailsTest as LaunchDetails, mapDispatchToProps } from '..';
import { LaunchDetailsTest as LaunchDetails, mapDispatchToProps } from '..';
import { LaunchDetailsProps } from '../types';
import history from '@app/utils/history';
import { requestGetLaunch } from '../reducer';

Expand Down

0 comments on commit f204179

Please sign in to comment.