Skip to content

Commit 00a2515

Browse files
committed
Formatting
1 parent 35a9fd6 commit 00a2515

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

plugins/notion/src/data.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,13 @@ export async function syncCollection(
233233

234234
// Skip field value if the item has not changed and the field type has not changed.
235235
// Always synced property types are never skipped.
236-
if (isUnchanged && !updatedFieldIds.has(field.id) && !alwaysSyncedPropertyTypes.includes(property.type))
236+
if (
237+
isUnchanged &&
238+
!updatedFieldIds.has(field.id) &&
239+
!alwaysSyncedPropertyTypes.includes(property.type)
240+
) {
237241
continue
242+
}
238243

239244
const fieldEntry = getFieldDataEntryForProperty(property, field)
240245
if (fieldEntry) {

0 commit comments

Comments
 (0)