File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/components/EmergencyForm Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { FiAlertTriangle } from 'react-icons/fi'
15
15
import onSubmitForm from '@/services/formService'
16
16
import EvacuationForm from '@/components/EmergencyForm/EvacuationForm'
17
17
18
- export default function OtherEvacuationForm ( ) {
18
+ export default function ProxyEvacuationForm ( ) {
19
19
const [ loading , setLoading ] = useState < boolean > ( false )
20
20
const [ step , setStep ] = useState < number > ( 1 )
21
21
Original file line number Diff line number Diff line change 5
5
TabsTrigger
6
6
} from '@/components/ui/tabs'
7
7
import SelfEvacuationForm from '@/components/EmergencyForm/SelfEvacuationForm'
8
- import OtherEvacuationForm from '@/components/EmergencyForm/OtherEvacuationForm '
8
+ import ProxyEvacuationForm from '@/components/EmergencyForm/ProxyEvacuationForm '
9
9
10
10
export default function EmergencyForm ( ) {
11
11
return < div className = "w-full bg-nightBlue rounded-2xl p-5 space-y-5" >
@@ -21,7 +21,7 @@ export default function EmergencyForm() {
21
21
< SelfEvacuationForm />
22
22
</ TabsContent >
23
23
< TabsContent value = "other" >
24
- < OtherEvacuationForm />
24
+ < ProxyEvacuationForm />
25
25
</ TabsContent >
26
26
</ Tabs >
27
27
</ div >
You can’t perform that action at this time.
0 commit comments