Skip to content

Commit 74b24cb

Browse files
Merge pull request #3638 from gitcoinco/PAR-382
include defaults
2 parents 5f8b5d8 + 15e04b7 commit 74b24cb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

packages/round-manager/src/features/api/exports.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,18 @@ export async function roundApplicationsToCSV(
5555
});
5656

5757
const decryptedData: Record<string, string>[] = [];
58-
const columns = new Set();
58+
const columns = new Set([
59+
"id",
60+
"projectId",
61+
"status",
62+
"title",
63+
"payoutAddress",
64+
"signature",
65+
"website",
66+
"projectTwitter",
67+
"projectGithub",
68+
"userGithub"
69+
]);
5970

6071

6172
for (const application of applications) {

0 commit comments

Comments
 (0)