Skip to content

Commit

Permalink
chore: fix incorrect type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed Sep 19, 2024
1 parent 9ce85d1 commit f6237f4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import FacilityReviewFormData from "@reporting/src/app/components/facility/FacilityReviewFormData";
import { UUID } from "crypto";

export default async function Page({
params,
}: {
params: { version_id: number; facility_id: number };
params: { version_id: number; facility_id: UUID };
}) {
return (
<FacilityReviewFormData
Expand Down

0 comments on commit f6237f4

Please sign in to comment.