Removed unnecessary print statement

This commit is contained in:
Maximilian Giller 2022-02-11 21:16:06 +01:00
parent 84e6cb106c
commit 3544f44a74

View file

@ -85,7 +85,6 @@ export const helperService = {
* @returns Date as string in YYYY-MM-DD format * @returns Date as string in YYYY-MM-DD format
*/ */
toISODateOnly(date) { toISODateOnly(date) {
console.log(helperService.toISODate(date));
return helperService.toISODate(date).substring(0, 10); return helperService.toISODate(date).substring(0, 10);
}, },