Skip to content

Commit

Permalink
Merge pull request #3638 from gitcoinco/PAR-382
Browse files Browse the repository at this point in the history
include defaults
  • Loading branch information
thelostone-mc authored Sep 11, 2024
2 parents 5f8b5d8 + 15e04b7 commit 74b24cb
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion packages/round-manager/src/features/api/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,18 @@ export async function roundApplicationsToCSV(
});

const decryptedData: Record<string, string>[] = [];
const columns = new Set();
const columns = new Set([
"id",
"projectId",
"status",
"title",
"payoutAddress",
"signature",
"website",
"projectTwitter",
"projectGithub",
"userGithub"
]);


for (const application of applications) {
Expand Down

0 comments on commit 74b24cb

Please sign in to comment.