Skip to content

Commit

Permalink
Fix: Remove unused testData imports
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritanand committed May 21, 2023
1 parent dbf75d0 commit 4c56312
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import testData, { networkList } from '../../../../../.storybook/test-data';
import { networkList } from '../../../../../.storybook/test-data';
import CustomContentSearch from './custom-content-search';

export default {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { fireEvent, render, screen } from '@testing-library/react';
import Fuse from 'fuse.js';
import configureStore from '../../../../store/store';
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
import testData, { networkList } from '../../../../../.storybook/test-data';
import { networkList } from '../../../../../.storybook/test-data';
import CustomContentSearch from './custom-content-search';

function renderComponent({ componentProps = {} } = {}) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import testData, { networkList } from '../../../../../.storybook/test-data';
import { networkList } from '../../../../../.storybook/test-data';
import NetworksList from './networks-list';

export default {
Expand Down

0 comments on commit 4c56312

Please sign in to comment.