We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa821d8 commit 391bc50Copy full SHA for 391bc50
src/resources/utilityFunctions.js
@@ -10,7 +10,7 @@ export const convertToBase64 = (fileArray) => fileArray.map((file) => new Promis
10
fileReader.onerror = (error) => reject(new Error(error))
11
}))
12
13
-// used to add days to a Date () in the AdditionalInfo component
+// used to add days to a new Date() in the AdditionalInfo component
14
export const addDays = (date, days) => {
15
date.setDate(date.getDate() + days)
16
return date
0 commit comments