Skip to content

Commit 418ba1d

Browse files
committed
refactor: rename file OtherEvacuationForm.tsx -> ProxyEvacuationForm.tsx
1 parent 3977be6 commit 418ba1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/EmergencyForm/OtherEvacuationForm.tsx renamed to src/components/EmergencyForm/ProxyEvacuationForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { FiAlertTriangle } from 'react-icons/fi'
1515
import onSubmitForm from '@/services/formService'
1616
import EvacuationForm from '@/components/EmergencyForm/EvacuationForm'
1717

18-
export default function OtherEvacuationForm() {
18+
export default function ProxyEvacuationForm() {
1919
const [loading, setLoading] = useState<boolean>(false)
2020
const [step, setStep] = useState<number>(1)
2121

src/components/EmergencyForm/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
TabsTrigger
66
} from '@/components/ui/tabs'
77
import SelfEvacuationForm from '@/components/EmergencyForm/SelfEvacuationForm'
8-
import OtherEvacuationForm from '@/components/EmergencyForm/OtherEvacuationForm'
8+
import ProxyEvacuationForm from '@/components/EmergencyForm/ProxyEvacuationForm'
99

1010
export default function EmergencyForm() {
1111
return <div className="w-full bg-nightBlue rounded-2xl p-5 space-y-5">
@@ -21,7 +21,7 @@ export default function EmergencyForm() {
2121
<SelfEvacuationForm />
2222
</TabsContent>
2323
<TabsContent value="other">
24-
<OtherEvacuationForm />
24+
<ProxyEvacuationForm />
2525
</TabsContent>
2626
</Tabs>
2727
</div>

0 commit comments

Comments
 (0)