Skip to content

Commit

Permalink
fix(ui): fixing logo not showing on login form (#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisSouquiere authored and tchiotludo committed Apr 4, 2023
1 parent 5c85db9 commit 36c51e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/containers/Login/Login.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import logo from '../../images/logo.svg';
import { ReactComponent as Logo } from '../../images/logo.svg';
import { uriCurrentUser, uriLogin, uriOidc } from '../../utils/endpoints';
import { organizeRoles } from '../../utils/converters';
import { login } from '../../utils/api';
Expand Down Expand Up @@ -172,7 +172,7 @@ class Login extends Form {
>
<div>
<h3 className="logo">
<img src={logo} alt="" />
<Logo />
</h3>
</div>
{formEnabled && this._renderForm()}
Expand Down

0 comments on commit 36c51e5

Please sign in to comment.