Skip to content

Commit

Permalink
style :: 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Apr 9, 2024
1 parent 4140d4a commit 10055d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/recruitments/apply/FileUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function FileUploader({
const removeOverlap = (array: File[]) => {
let uniqueObjects:{[key:string]:File} = {}
array.forEach(obj => {
const { name, lastModified,} = obj
const { name, lastModified } = obj
const key = JSON.stringify({name, lastModified});
uniqueObjects[key] = obj;
});
Expand Down

0 comments on commit 10055d4

Please sign in to comment.