[WEB-4838] fix: github logo theme #7709

This commit is contained in:
Anmol Singh Bhatia
2025-09-02 22:39:42 +05:30
committed by GitHub
parent 4b74751e4e
commit 91f0228b5f
2 changed files with 2 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ export const AuthRoot: FC = observer(() => {
text: `${content} with GitHub`,
icon: (
<Image
src={resolvedTheme === "dark" ? GithubDarkLogo : GithubLightLogo}
src={resolvedTheme === "dark" ? GithubLightLogo : GithubDarkLogo}
height={18}
width={18}
alt="GitHub Logo"

View File

@@ -122,7 +122,7 @@ export const AuthRoot: FC<TAuthRoot> = observer((props) => {
text: `${OauthButtonContent} with GitHub`,
icon: (
<Image
src={resolvedTheme === "dark" ? GithubLightLogo : GithubDarkLogo}
src={resolvedTheme === "dark" ? GithubDarkLogo : GithubLightLogo}
height={18}
width={18}
alt="GitHub Logo"