Skip to content

Commit

Permalink
Rename filter menu internally
Browse files Browse the repository at this point in the history
  • Loading branch information
callumforrester committed Jun 6, 2024
1 parent 5e616e7 commit fe6e08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/FilterMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface Props {
onApplicationChange: (application: string) => void;
}

const LogMenu: React.FC<Props> = (props: Props) => {
const FilterMenu: React.FC<Props> = (props: Props) => {
return (
<Box sx={{ padding: "1vw" }}>
<Grid container spacing={2}>
Expand Down Expand Up @@ -67,4 +67,4 @@ const LogMenu: React.FC<Props> = (props: Props) => {
);
};

export default LogMenu;
export default FilterMenu;

0 comments on commit fe6e08b

Please sign in to comment.