Skip to content

Commit

Permalink
fix(website): revert use of FilterValue
Browse files Browse the repository at this point in the history
  • Loading branch information
bh-ethz committed Feb 8, 2024
1 parent 232ebfb commit e1e84d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/SearchPage/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { capitalCase } from 'change-case';
import type { FC, ReactElement } from 'react';

import { routes } from '../../routes.ts';
import type { FilterValue, MutationFilter, Schema } from '../../types/config.ts';
import type { MetadataFilter, MutationFilter, Schema } from '../../types/config.ts';
import type { OrderBy } from '../../types/lapis.ts';
import MdiTriangle from '~icons/mdi/triangle';
import MdiTriangleDown from '~icons/mdi/triangle-down';
Expand All @@ -15,7 +15,7 @@ type TableProps = {
organism: string;
schema: Schema;
data: TableSequenceData[];
metadataFilter: FilterValue[];
metadataFilter: MetadataFilter[];
mutationFilter: MutationFilter;
page: number;
orderBy: OrderBy;
Expand Down

0 comments on commit e1e84d8

Please sign in to comment.