Skip to content

Commit 391bc50

Browse files
committed
fix comment
1 parent aa821d8 commit 391bc50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/utilityFunctions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const convertToBase64 = (fileArray) => fileArray.map((file) => new Promis
1010
fileReader.onerror = (error) => reject(new Error(error))
1111
}))
1212

13-
// used to add days to a Date () in the AdditionalInfo component
13+
// used to add days to a new Date() in the AdditionalInfo component
1414
export const addDays = (date, days) => {
1515
date.setDate(date.getDate() + days)
1616
return date

0 commit comments

Comments
 (0)