Skip to content

Commit

Permalink
fix/#80-주소 나타내기
Browse files Browse the repository at this point in the history
  • Loading branch information
SJLEE316 committed Apr 6, 2022
1 parent f371a8f commit 44af23f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Map/ModalAddress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ModalAddress = () => {

// @brief 주소검색창 - 데이터 조회
const [isModal, setModal] = useState<boolean>(false);
const [fullAddress, setFullAddress] = useState<String>('직접입력');
const [fullAddress, setFullAddress] = useState<string>('직접입력');

return (
<>
Expand All @@ -39,6 +39,7 @@ const ModalAddress = () => {
navigation.navigate('map', {
activeType: false,
address: data.address,
setFullAddress: setFullAddress,
});
}}
/>
Expand Down

0 comments on commit 44af23f

Please sign in to comment.