From 85d9f1c98c801ac39470931d54d152e0da17a466 Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Fri, 14 Nov 2025 17:45:53 +0100 Subject: [PATCH] removing favicon route --- backend/main.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/backend/main.py b/backend/main.py index b98a7d3..916eade 100644 --- a/backend/main.py +++ b/backend/main.py @@ -192,13 +192,6 @@ async def logout(request: Request): request.session.clear() return RedirectResponse(url="/login", status_code=303) - -@app.get("/favicon.ico") -async def favicon(): - """Serve favicon (redirect to SVG)""" - return RedirectResponse(url="/static/favicon.svg", status_code=301) - - # ============================================================================ # Routers with Authentication # ============================================================================