Esteves Enzo commited on
Commit
e270a74
·
1 Parent(s): 8b95140

fix build error id is string

Browse files
Files changed (1) hide show
  1. components/modal/modal.tsx +1 -1
components/modal/modal.tsx CHANGED
@@ -5,7 +5,7 @@ import { arrayBufferToBase64 } from "@/utils";
5
  import { useCollection } from "./useCollection";
6
 
7
  interface Props {
8
- id: number;
9
  onClose: () => void;
10
  }
11
 
 
5
  import { useCollection } from "./useCollection";
6
 
7
  interface Props {
8
+ id: string;
9
  onClose: () => void;
10
  }
11