Skip to content

Commit

Permalink
fix path in fallback logo
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesbrandenburger committed Jan 18, 2024
1 parent f283d55 commit c21e2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const BACKEND_URL = import.meta.env.VITE_BACKEND_URL;
const TENANT = import.meta.env.VITE_TENANT || 'default';
const TENANT_CLIENT_ID = import.meta.env.VITE_TENANT_CLIENT_ID;

const TENANT_LOGO = import.meta.env.VITE_TENANT_LOGO || 'public/default-logo.png';
const TENANT_LOGO = import.meta.env.VITE_TENANT_LOGO || '/default-logo.png';
const TENANT_BACKGROUNDCOLOR = import.meta.env.VITE_TENANT_BACKGROUNDCOLOR;

const PATH = TENANT == 'default' ? '' : `/${TENANT}`;
Expand Down

0 comments on commit c21e2a2

Please sign in to comment.