aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app/groups/[groupId]/expenses/export/json/route.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/groups/[groupId]/expenses/export/json/route.ts b/src/app/groups/[groupId]/expenses/export/json/route.ts
index fe5be65..b7009a3 100644
--- a/src/app/groups/[groupId]/expenses/export/json/route.ts
+++ b/src/app/groups/[groupId]/expenses/export/json/route.ts
@@ -33,7 +33,7 @@ export async function GET(
return NextResponse.json(group, {
headers: {
'content-type': 'application/json',
- 'content-disposition': `attachment; filename="${group.name}.json"`,
+ 'content-disposition': `attachment; filename="Spliit Export.json"`,
},
})
}