diff --git a/app/pkg/web/renderer.go b/app/pkg/web/renderer.go index 32634989f..faf8dc998 100644 --- a/app/pkg/web/renderer.go +++ b/app/pkg/web/renderer.go @@ -176,11 +176,8 @@ func (r *Renderer) Render(w io.Writer, statusCode int, props Props, ctx *Context r.chunkedAssets[pageChunkName], } - if tenant == nil || tenant.LogoBlobKey == "" { - private["favicon"] = AssetsURL(ctx, "/static/favicon") - } else { - private["favicon"] = AssetsURL(ctx, "/static/favicon/%s", tenant.LogoBlobKey) - } + // Always use the local favicon file + private["favicon"] = AssetsURL(ctx, "/static/favicon") private["currentURL"] = ctx.Request.URL.String() if canonicalURL := ctx.Value("Canonical-URL"); canonicalURL != nil {