Skip to content

Commit a4b1e3f

Browse files
committed
fix: Fixed typo
1 parent 06b720c commit a4b1e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/tix_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ async def download_tix(
7373
zip_path = "vex_tix_sbom.zip"
7474
with ZipFile(zip_path, "w") as myzip:
7575
myzip.writestr(f"tix_{tix['sbom_name']}.json", dumps(tix["tix"], indent=2))
76-
return FileResponse(path=zip_path, filename="vex.zip", headers={'Access-Control-Expose-Headers': 'Content-Disposition'}, status_code=status.HTTP_200_OK)
76+
return FileResponse(path=zip_path, filename="tix.zip", headers={'Access-Control-Expose-Headers': 'Content-Disposition'}, status_code=status.HTTP_200_OK)

0 commit comments

Comments
 (0)