forked from trent_larson/crowd-funder-for-time-pwa
remove unnecessary data element from export
This commit is contained in:
@@ -874,7 +874,6 @@ export const contactToCsvLine = (contact: Contact): string => {
|
|||||||
*/
|
*/
|
||||||
export interface TableExportData {
|
export interface TableExportData {
|
||||||
tableName: string;
|
tableName: string;
|
||||||
inbound: boolean;
|
|
||||||
rows: Array<Record<string, unknown>>;
|
rows: Array<Record<string, unknown>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -912,7 +911,6 @@ export const contactsToExportJson = (contacts: Contact[]): DatabaseExport => {
|
|||||||
data: {
|
data: {
|
||||||
data: [{
|
data: [{
|
||||||
tableName: "contacts",
|
tableName: "contacts",
|
||||||
inbound: true,
|
|
||||||
rows
|
rows
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user