fix: change address input to can change

This commit is contained in:
Dayoung 2025-05-16 11:06:41 +09:00
parent 6b62dfc1f2
commit c653df0ce7
2 changed files with 1 additions and 4 deletions

View File

@ -93,7 +93,7 @@ export const selectBoxOptions: Record<SelectBoxKeys, { id: number; name: string
RAFTER_PITCH: [
{
id: 1,
name: '(455mm以下',
name: '455mm以下',
},
{
id: 2,

View File

@ -6,7 +6,6 @@ import { usePopupController } from '@/store/popupController'
import { useAddressStore } from '@/store/addressStore'
import { useSessionStore } from '@/store/session'
export default function BasicRegist({
basicInfoData,
setBasicInfoData,
@ -14,7 +13,6 @@ export default function BasicRegist({
basicInfoData: SurveyBasicRequest
setBasicInfoData: (data: SurveyBasicRequest) => void
}) {
const { addressData } = useAddressStore()
const { session } = useSessionStore()
@ -129,7 +127,6 @@ export default function BasicRegist({
placeholder="都道府県"
value={basicInfoData.ADDRESS ?? ''}
onChange={(e) => handleChange('ADDRESS', e.target.value)}
readOnly
/>
</div>
</div>