File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ export function _checkCredential({
633
633
validUntil = new Date ( credential . validUntil ) ;
634
634
if ( now > validUntil ) {
635
635
throw new Error (
636
- `The current date time (${ now . toISOString ( ) } ) is after the ` +
636
+ `The current date time (${ now . toISOString ( ) } ) is after ` +
637
637
`"validUntil" (${ validUntil . toISOString ( ) } ).` ) ;
638
638
}
639
639
}
@@ -643,7 +643,7 @@ export function _checkCredential({
643
643
validFrom = new Date ( credential . validFrom ) ;
644
644
if ( now < validFrom ) {
645
645
throw new Error (
646
- `The current date time (${ now . toISOString ( ) } ) is before the ` +
646
+ `The current date time (${ now . toISOString ( ) } ) is before ` +
647
647
`"validFrom" (${ validFrom . toISOString ( ) } ).` ) ;
648
648
}
649
649
}
You can’t perform that action at this time.
0 commit comments