Skip to content

Commit

Permalink
Fix export after rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriLojda committed Nov 30, 2023
1 parent 1842c1f commit 830c522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const exportMetadata = async (environmentId: string) => {
}

zip.file('metadata.json', JSON.stringify(metadata));
};

const createExportEntity = (client: ManagementClient, definition: EntityDefinition<unknown>) => definition.fetchEntities(client)
.then(definition.serializeEntities);
}
const createExportEntity = (client: ManagementClient, definition: EntityDefinition<unknown>) => definition.fetchEntities(client)
.then(definition.serializeEntities);

0 comments on commit 830c522

Please sign in to comment.