Skip to content

Commit 6c9cb9c

Browse files
committed
Remove debug lines
1 parent a1fc587 commit 6c9cb9c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

components/dashboard/src/insights/download/download-sessions.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ const downloadUsageCSV = async ({
137137
// Prepend Header
138138
csvRows.unshift(fields.join(","));
139139

140-
console.log(csvRows);
141-
142140
const blob = new Blob([`\ufeff${csvRows.join("\n")}`], {
143141
type: "text/csv;charset=utf-8",
144142
});
@@ -207,8 +205,6 @@ export const transformSessionRecord = (session: WorkspaceSession, member: Organi
207205
editorVersion: session.workspace?.spec?.editor?.version, // indicates whether user selected the stable or latest editor release channel
208206
};
209207

210-
console.log(row);
211-
212208
return row;
213209
};
214210

0 commit comments

Comments
 (0)