Skip to content

Commit

Permalink
๐Ÿ“ Docs : asset ๋ฐ ๊ฒฝ๋กœ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
๐Ÿ“ Docs : asset ๋ฐ ๊ฒฝ๋กœ ์ˆ˜์ •
  • Loading branch information
eunjju2 authored Dec 8, 2024
2 parents 9ca93a4 + 0a1dc44 commit b153d91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
touch .env
echo VITE_KAKAOMAP_APP_KEY=${{ secrets.VITE_KAKAOMAP_APP_KEY }} >> .env
echo VITE_APP_SERVER_URL=https://recode.bumblebeestudy.shop >> .env
echo VITE_APP_SERVER_URL=`https://recode.bumblebeestudy.shop` >> .env
echo VITE_APP_TOSS_CLIENT_KEY=${{ secrets.VITE_APP_TOSS_CLIENT_KEY }} >> .env
cat .env
Expand Down
6 changes: 4 additions & 2 deletions src/pages/UserLogin/components/UserLoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { ERROR_MESSAGE, PLACEHOLDER, BASE_URL } from '@constants/constants';
import { isValidEmail, isValidPassword } from '@utils/validationCheckRegex';
import { FormEvent, useState } from 'react';
import { useNavigate } from 'react-router-dom';
import NaverLogo from '@assets/icons/NaverLogo.svg';
import KakaoLogo from '@assets/icons/KakaoLogo.svg';
import useUserLogIn from '../hooks/useUserLogIn';

const UserLoginForm = () => {
Expand Down Expand Up @@ -109,13 +111,13 @@ const UserLoginForm = () => {
className='mr-[12px]'
>
<img
src='/src/assets/icons/KakaoLogo.svg'
src={KakaoLogo}
alt='์นด์นด์˜ค ๋กœ๊ณ '
/>
</a>
<a href={`${BASE_URL}/oauth2/authorization/naver`}>
<img
src='/src/assets/icons/NaverLogo.svg'
src={NaverLogo}
alt='๋„ค์ด๋ฒ„ ๋กœ๊ณ '
/>
</a>
Expand Down

0 comments on commit b153d91

Please sign in to comment.