diff --git a/packages/round-manager/src/features/api/exports.ts b/packages/round-manager/src/features/api/exports.ts index deb94e3b6..02019834e 100644 --- a/packages/round-manager/src/features/api/exports.ts +++ b/packages/round-manager/src/features/api/exports.ts @@ -55,7 +55,18 @@ export async function roundApplicationsToCSV( }); const decryptedData: Record[] = []; - const columns = new Set(); + const columns = new Set([ + "id", + "projectId", + "status", + "title", + "payoutAddress", + "signature", + "website", + "projectTwitter", + "projectGithub", + "userGithub" + ]); for (const application of applications) {