Skip to content

Commit

Permalink
fix: typings fix (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
paanSinghCoder authored Nov 20, 2024
1 parent ba14c7b commit d5318cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/raystack/table/FilteredChip.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { useEffect, useState } from "react";
import { Cross1Icon } from "@radix-ui/react-icons";
import { Column } from "@tanstack/table-core";
import { Box } from "~/box";
import { Flex } from "~/flex";
import { Select } from "~/select";
import { Text } from "~/text";
import { TextField } from "~/textfield";
import { TableColumnMetadata } from "~/typing";
import { TableColumnMetadata } from "~/typings";
import { DatePicker, RangePicker } from "~/calendar";
import styles from "./datatable.module.css";
import {
ApsaraColumnDef,
FilterValue,
Expand All @@ -18,8 +18,8 @@ import {
updateColumnFilter,
} from "./datatables.types";
import { useTable } from "./hooks/useTable";
import { useCallback, useEffect, useMemo, useState } from "react";
import { FilterOperation, operationsOptions } from "./filterFns";
import styles from "./datatable.module.css";

type FilteredChipProps = {
column: Column<any, unknown>;
Expand Down

0 comments on commit d5318cb

Please sign in to comment.