prettier fix

This commit is contained in:
Yes365 2025-03-16 16:53:03 +08:00 committed by GitHub
parent 0db610aac9
commit 850dcffd00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,9 +71,9 @@ export default ((opts?: Partial<FolderContentOptions>) => {
if (child.data?.dates) {
// compare all dates and assign to maybeDates if its more recent or its not set
if (!maybeDates) {
const childDates = child.data.dates;
const childDates = child.data.dates
maybeDates = {
...childDates
...childDates,
}
} else {
if (child.data.dates.created > maybeDates.created) {