fix tag editor key deletion

This commit is contained in:
jeffvli
2026-07-19 21:13:22 -07:00
parent 173efa9bfd
commit 14625a9ef6
@@ -285,7 +285,7 @@ export async function writeFilesTags(
} }
for (const key of propertyRemovals) { for (const key of propertyRemovals) {
delete properties[canonicalizePropertyKey(key)]; properties[canonicalizePropertyKey(key)] = [];
} }
file.setProperties(properties); file.setProperties(properties);