Skip to content

Commit

Permalink
fix region
Browse files Browse the repository at this point in the history
  • Loading branch information
ustnv committed Jan 29, 2025
1 parent b38ecb0 commit 798a26b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as React from "react";
import { useStore } from "../../models/root-store";
import { DateFilter } from "./date-filter";
import { ParticipantsFilter } from "./participants-filter";
import { RegionFilter } from "./region-filter";
import { RegionFilterSection } from "./region-filter";
import { SeverityFilter } from "./severity-filter";

const FilterSection = ({ filter }) => {
Expand All @@ -16,7 +16,7 @@ const FilterSection = ({ filter }) => {
case "severity":
return <SeverityFilter {...filter} />;
case "region":
return <RegionFilter {...filter} />;
return <RegionFilterSection {...filter} />;
default:
return null;
}
Expand Down

0 comments on commit 798a26b

Please sign in to comment.