Skip to content

Commit e96d04a

Browse files
author
FalkWolsky
committed
Fixing Login Page Logo URL
1 parent 7cb8b98 commit e96d04a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/packages/lowcoder/src/pages/userAuth/authComponents.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import styled from "styled-components";
66
import ReactHotkeys from "util/hotkeys";
77
import { StyledLink } from "pages/common/styledComponent";
88
import { trans } from "i18n";
9-
import { fullAvatarUrl } from "util/urlUtils";
9+
import { favicon } from "assets/images";
1010

1111
const AuthCardContainer = styled.div`
1212
display: flex;
@@ -153,7 +153,7 @@ export const AuthContainer = (props: {
153153
<AuthCard>{props.children}</AuthCard>
154154
{ props.subHeading && (
155155
<AuthCardSubFooter>
156-
<img src={fullAvatarUrl("/src/assets/images/Lowcoder-Logo.svg")} alt={"Lowcoder | " + trans("productDesc")} width="20px"/>
156+
<img src={favicon} alt={"Lowcoder | " + trans("productDesc")} width="20px"/>
157157
<a href="https://lowcoder.cloud" target="_blank" rel="noreferrer">
158158
{props.subHeading}
159159
</a>

0 commit comments

Comments
 (0)