Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
fix(analytics): csv export of evaluations
Browse files Browse the repository at this point in the history
  • Loading branch information
jhdcruz committed Nov 22, 2024
1 parent de233d9 commit 4c982da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/activities/export/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function GET(req: NextRequest) {
const supabase = await createServerClient(cookies);

const { data, error } = await supabase
.from('activity_feedback')
.from('activity_eval_view')
.select()
.csv();

Expand Down

0 comments on commit 4c982da

Please sign in to comment.