Skip to content

Commit

Permalink
fix(platform): Fixed duplicate Google Logo UI fix (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
prabuddha369 authored Sep 19, 2024
1 parent 8fdb328 commit fb0d6f7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
15 changes: 15 additions & 0 deletions apps/platform/public/svg/auth/gitlabSVG.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion apps/platform/public/svg/auth/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import KeyshadeBigSVG from './KeyshadeLogoBig.svg'
import GoogleSVG from './googleSVG.svg'
import GithubSVG from './githubSVG.svg'
import GitlabSVG from './gitlabSVG.svg'

export { KeyshadeBigSVG, GoogleSVG, GithubSVG }
export { KeyshadeBigSVG, GoogleSVG, GithubSVG, GitlabSVG }
4 changes: 2 additions & 2 deletions apps/platform/src/app/auth/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useRouter } from 'next/navigation'
import { useAtom } from 'jotai'
import Cookies from 'js-cookie'
import { LoadingSVG } from '@public/svg/shared'
import { GithubSVG, GoogleSVG, KeyshadeBigSVG } from '@public/svg/auth'
import { GithubSVG, GoogleSVG, KeyshadeBigSVG ,GitlabSVG} from '@public/svg/auth'
import { Input } from '@/components/ui/input'
import { Button } from '@/components/ui/button'
import { authEmailAtom } from '@/store'
Expand Down Expand Up @@ -65,7 +65,7 @@ export default function AuthPage(): React.JSX.Element {
<GithubSVG />
</Button>
<Button>
<GoogleSVG />
<GitlabSVG />
</Button>
</div>

Expand Down

0 comments on commit fb0d6f7

Please sign in to comment.