Skip to content

Commit

Permalink
include defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Sep 11, 2024
1 parent 5f8b5d8 commit 15e04b7
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 15e04b7

Please sign in to comment.