Skip to content

Commit 7cbb3cd

Browse files
author
pariah
committed
cs export wrap values in quotes
1 parent aced25b commit 7cbb3cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ const downloadContacts = async () => {
245245
return `"${curr[h].map(({ name }: { name: string; }) => name).join(",")}"`;
246246
}
247247
else
248-
return curr[h];
248+
return `"${curr[h]}"`;
249249
}).join(",") + "\n";
250250
return acc + newValues;
251251
}, ""

0 commit comments

Comments
 (0)