remove unnecessary data element from export

This commit is contained in:
2025-06-07 14:02:22 -06:00
parent 92e70b1ed7
commit 9de09b1d75

View File

@@ -874,7 +874,6 @@ export const contactToCsvLine = (contact: Contact): string => {
*/
export interface TableExportData {
tableName: string;
inbound: boolean;
rows: Array<Record<string, unknown>>;
}
@@ -912,7 +911,6 @@ export const contactsToExportJson = (contacts: Contact[]): DatabaseExport => {
data: {
data: [{
tableName: "contacts",
inbound: true,
rows
}]
}