Skip to content

Commit

Permalink
fix: add missing attribute to batch-upload-list component
Browse files Browse the repository at this point in the history
  • Loading branch information
diego3g committed Jun 17, 2024
1 parent 4fd2a44 commit 81b05d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/src/app/(app)/batches/[id]/batch-upload-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,10 @@ export function BatchUploadList({ batchId }: BatchUploadListProps) {
</div>
</TableCell>
<TableCell>
<UploadItemActions videoId={video.id} />
<UploadItemActions
uploadBatchId={video.uploadBatchId}
videoId={video.id}
/>
</TableCell>
</TableRow>
))
Expand Down

0 comments on commit 81b05d6

Please sign in to comment.