Skip to content

Commit

Permalink
chore(requestoverview): remove unused props
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Mar 22, 2023
1 parent 7ddd13f commit 1be4dc9
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,8 @@ import {
BiCheck,
BiEditAlt,
} from "react-icons/bi"
import { useParams } from "react-router-dom"
import { TableVirtuoso } from "react-virtuoso"

import { useStagingUrl } from "hooks/settingsHooks"

import { BxFileArchiveSolid } from "assets"
import { EditedItemProps } from "types/reviewRequest"
import { extractInitials, getDateTimeFromUnixTime } from "utils"
Expand Down Expand Up @@ -174,11 +171,9 @@ export const RequestOverview = ({
handleCollapse,
} = useSearchbar({})
const columnHelper = createColumnHelper<EditedItemProps>()
const { siteName } = useParams<{ siteName: string }>()
const theme = useTheme()
const [sorting, setSorting] = useState<SortingState>([])
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([])
const { data: stagingUrl } = useStagingUrl({ siteName })

const handleFilter = <T, U>(filter: unknown, column: Column<T, U>) => {
const curFilterValue = column.getFilterValue()
Expand Down

0 comments on commit 1be4dc9

Please sign in to comment.