Skip to content

Commit

Permalink
fix : 사라진 링크 복구 (#413)
Browse files Browse the repository at this point in the history
* style : 현재 위치 마커 스타일 수정

* style : 지도 색상 소폭 수정

* style : 지도 장소 마커 변경

* style : 지도 플로팅 버튼 스타일 변경

* fix : 링크 복구
  • Loading branch information
cmlim0070 authored Dec 9, 2024
1 parent 4090ab1 commit f3d2433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Map/MapExplorerPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const MapExplorerPage = () => {
<>
{searchedLocation ? (
<NavLink
to={'/letter/create'}
to={`/letter/map/:${searchedLocation.lat}/:${searchedLocation.lon}/create`}
className={CreateBtnStyle}
>
<HiOutlinePencilAlt />
Expand Down Expand Up @@ -116,7 +116,7 @@ export const MapExplorerPage = () => {
<>
{searchedLocation ? (
<NavLink
to={'/letter/create'}
to={`/letter/map/:${searchedLocation.lat}/:${searchedLocation.lon}/create`}
className={CreateBtnStyle}
>
<HiOutlinePencilAlt />
Expand Down

0 comments on commit f3d2433

Please sign in to comment.