Skip to content

Commit 40c6dca

Browse files
Fix Badge typing in components/Filter/index.tsx
1 parent f8a4850 commit 40c6dca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Filter/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import styles from "./Filter.module.css";
44
import { useRef } from "react";
55
import { useSearchParams, useRouter } from "next/navigation";
6-
import { Category, Device } from "@/badgehub-api-client/generated/models";
6+
import { Category, Badge } from "@/badgehub-api-client/generated/models";
77

88
type FilterProps = {
99
categories: Category[];
10-
devices: Device[];
10+
devices: Badge[];
1111
};
1212

1313
export function Filter({ categories, devices }: FilterProps) {

0 commit comments

Comments
 (0)