From 15e04b7e3e249607b65e2891e9e8fd353654830c Mon Sep 17 00:00:00 2001 From: Aditya Anand M C Date: Wed, 11 Sep 2024 20:38:58 +0530 Subject: [PATCH] include defaults --- packages/round-manager/src/features/api/exports.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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) {