Skip to content

Commit e931e1e

Browse files
Merge pull request #205 from DeepDirect/develop
[deploy] cspell.json에 'zoomable' 단어 추가 및 ProfileMap 컴포넌트에서 DDOK 마스코트 아이콘 …
2 parents 88be15c + 31c7d3f commit e931e1e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

cspell.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"xxsm",
4949
"xxsmall",
5050
"xxxsmall",
51-
"zonecode"
51+
"zonecode",
52+
"zoomable"
5253
]
5354
}

src/features/map/components/ProfileMap/ProfileMap.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
ZoomControl,
99
} from 'react-kakao-maps-sdk';
1010

11+
import DDOKMascotIcon from '@/assets/images/DDOK/DDOK-Mascot.svg';
1112
import Button from '@/components/Button/Button';
1213

1314
import { useGetProfileMap } from '../../hooks/useGetProfileMap';
@@ -141,7 +142,7 @@ const ProfileMap = ({ playerId, location }: ProfileMapProps) => {
141142
<MapMarker
142143
position={{ lat: location.latitude, lng: location.longitude }}
143144
image={{
144-
src: '/src/assets/images/DDOK/DDOK-Mascot.svg',
145+
src: DDOKMascotIcon,
145146
size: { width: 40, height: 40 },
146147
}}
147148
/>

0 commit comments

Comments
 (0)