Skip to content

Commit

Permalink
Fix filters test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChloeZacharias committed Jun 15, 2024
1 parent 04231dd commit 9791997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/tests/component_tests/Filters.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import Filters from "../../src/components/filters";
import { mount } from "cypress/react";

interface SearchObject {
minPrice?: number;
maxPrice?: number;
minPrice?: number | null;
maxPrice?: number | null;
status: string;
searchType: string;
}
Expand Down

0 comments on commit 9791997

Please sign in to comment.