fix linting

This commit is contained in:
2025-05-25 20:48:33 -06:00
parent 5057d7d07f
commit 5f24f4975d
14 changed files with 130 additions and 75 deletions

View File

@@ -136,7 +136,7 @@ export default class DataExportSection extends Vue {
transform: (table, value, key) => {
if (table === "contacts") {
// Dexie inserts a number 0 when some are undefined, so we need to totally remove them.
Object.keys(value).forEach(prop => {
Object.keys(value).forEach((prop) => {
if (value[prop] === undefined) {
delete value[prop];
}