Skip to content

Commit

Permalink
Improves imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gudjong committed Jun 11, 2024
1 parent 604b402 commit ab3f1fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useContext, useEffect, useState } from 'react'
import React, { FC, useContext, useEffect, useState } from 'react'
import { useIntl } from 'react-intl'
import { AnimatePresence } from 'framer-motion'

Expand Down Expand Up @@ -42,7 +42,7 @@ interface CasesInProgressTableProps {
refetch: () => Promise<unknown>
}

const CasesInProgressTable: React.FC<CasesInProgressTableProps> = (props) => {
const CasesInProgressTable: FC<CasesInProgressTableProps> = (props) => {
const { loading, isFiltering, cases, refetch } = props

const { formatMessage } = useIntl()
Expand Down

0 comments on commit ab3f1fc

Please sign in to comment.