Skip to content

Commit

Permalink
Removed extra console.log()
Browse files Browse the repository at this point in the history
Removed extra console.log() from files for cleanup.
  • Loading branch information
kevinzhong930 committed Nov 12, 2024
1 parent 8dc951e commit 1f67e64
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion devU-api/src/fileUpload/fileUpload.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export async function detail(req: Request, res: Response, next: NextFunction) {
const bucketName = req.params.bucketName
const fileName = req.params.fileName
const file: Buffer = await FileUploadService.retrieve(bucketName, fileName)
console.log(file)

if (!file) return res.status(404).json(NotFound)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const SubmissionFileView = () => {
}, [])

useEffect(() => {
console.log(filename)
if (bucket && filename) {
fetchFile()
}
Expand Down

0 comments on commit 1f67e64

Please sign in to comment.