Skip to content

Commit 9c83d75

Browse files
authored
Merge pull request #279 from MBTips/dev
19차 배포
2 parents ca13e10 + e12c29a commit 9c83d75

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
2828
- name: Create .env file # env 파일 생성 단계 추가
2929
run: |
30+
echo "VITE_API_BASE_URL=${{ secrets.VITE_API_BASE_URL }}" >> .env
3031
echo "VITE_KAKAO_REST_API_KEY=${{ secrets.VITE_KAKAO_REST_API_KEY }}" >> .env
3132
echo "VITE_KAKAO_JAVASCRIPT_KEY=${{ secrets.VITE_KAKAO_JAVASCRIPT_KEY }}" >> .env
3233
echo "VITE_KAKAO_PRODUCTION_REDIRECT_URI=${{ secrets.VITE_KAKAO_PRODUCTION_REDIRECT_URI }}" >> .env

src/components/Profile.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ const Profile = ({ info, deleteIndex, setVirtualFriendList }: ProfileProps) => {
4040
<div className="relative h-[192px] w-[157px] overflow-hidden rounded-[8px] border border-[#EEEEEE] bg-white lg:w-[200px]">
4141
<button onClick={handleDelete}>
4242
<img
43-
src="/public/icon/dustbin.svg"
43+
src="/icon/dustbin.svg"
4444
alt="Delete"
4545
className="absolute top-3 right-3 h-5 w-5 cursor-pointer"
4646
width={16}
4747
height={16}
4848
/>
4949
</button>
5050
<img
51-
src={`/public/image/${info.mbti}_profile.png`}
51+
src={`/image/${info.mbti}_profile.png`}
5252
alt="Profile"
5353
className="absolute top-[12px] left-[11px] h-12 w-12 rounded-full object-cover"
5454
/>

src/components/header/MainHeader.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,13 @@ const MainHeader = ({ isLoggedIn }: { isLoggedIn: boolean }) => {
1313
return (
1414
<div className="flex h-[56px] w-full items-center justify-between bg-white pl-5">
1515
<Link to="/" className="flex items-center">
16-
<img
17-
src="/public/icon/mbtipslogo.svg"
18-
alt="Logo"
19-
width={110}
20-
height={31}
21-
/>
16+
<img src="/icon/mbtipslogo.svg" alt="Logo" width={110} height={31} />
2217
</Link>
2318
{!isLoggedIn ? (
2419
<LoginButton />
2520
) : (
2621
<img
27-
src="/public/icon/people.svg"
22+
src="/icon/people.svg"
2823
alt="Login Done"
2924
className="mx-auto mr-[20px] cursor-pointer"
3025
width={24}

src/components/header/SubHeader.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const SubHeader = ({
5959
<div className="relative flex h-[56px] w-full items-center justify-between border-b border-gray-100 bg-white">
6060
{showPreviousIcon && (
6161
<img
62-
src="/public/icon/arrow_left.svg"
62+
src="/icon/arrow_left.svg"
6363
alt="Go To Back"
6464
className="absolute left-4 cursor-pointer"
6565
width={9}
@@ -77,12 +77,7 @@ const SubHeader = ({
7777
onClick={() => setShareModalIsOpen(true)}
7878
className="absolute right-4"
7979
>
80-
<img
81-
src="/public/icon/share.svg"
82-
alt="Share"
83-
width={16}
84-
height={16}
85-
/>
80+
<img src="/icon/share.svg" alt="Share" width={16} height={16} />
8681
</button>
8782
)}
8883
</div>

0 commit comments

Comments
 (0)