diff --git a/invokeai/app/api/routers/style_presets.py b/invokeai/app/api/routers/style_presets.py index aa0296507c..0f4967cc63 100644 --- a/invokeai/app/api/routers/style_presets.py +++ b/invokeai/app/api/routers/style_presets.py @@ -254,7 +254,9 @@ async def export_style_presets(): output.close() return Response( - content=csv_data, media_type="text/csv", headers={"Content-Disposition": "attachment; filename=data.csv"} + content=csv_data, + media_type="text/csv", + headers={"Content-Disposition": "attachment; filename=prompt_templates.csv"}, )