Skip to content

Commit

Permalink
fix basepath for oauth icons
Browse files Browse the repository at this point in the history
  • Loading branch information
akellbl4 authored and umputun committed Jun 5, 2022
1 parent e55f6ff commit 6936268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/components/auth/components/oauth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function OAuth({ providers, onOauthClick }: Props) {
data-provider-name={name}
title={intl.formatMessage(messages.oauthTitle, { provider: name })}
>
<img className="oauth-icon" src={icon} width="20" height="20" alt="" aria-hidden={true} />
<img className="oauth-icon" src={`${BASE_URL}${icon}`} width="20" height="20" alt="" aria-hidden={true} />
</a>
</li>
);
Expand Down

0 comments on commit 6936268

Please sign in to comment.