Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karthxk07 committed Jan 28, 2024
1 parent 26dcb24 commit 1c01d52
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { Dispatch, SetStateAction } from 'react';
import React from 'react';
import { render } from '@testing-library/react';
import CurrentHourIndicator from './CurrentHourIndicator';
Expand Down
10 changes: 1 addition & 9 deletions src/components/EventCalendar/EventCalendar.test.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
/* eslint-disable react/react-in-jsx-scope */
import Calendar from './EventCalendar';
import {
render,
screen,
fireEvent,
act,
RenderResult,
} from '@testing-library/react';
import { render, screen, fireEvent, act } from '@testing-library/react';
import { MockedProvider } from '@apollo/react-testing';
import { I18nextProvider } from 'react-i18next';
import { debug } from 'jest-preview';
Expand All @@ -18,8 +12,6 @@ import {
import i18nForTest from 'utils/i18nForTest';
import { StaticMockLink } from 'utils/StaticMockLink';
import styles from './EventCalendar.module.css';
import { BrowserRouter } from 'react-router-dom';
import userEvent from '@testing-library/user-event';

const eventData = [
{
Expand Down

0 comments on commit 1c01d52

Please sign in to comment.