Skip to content

Commit

Permalink
fields corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
kubraaksux committed Dec 15, 2023
1 parent a366fe6 commit 8842d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resq/frontend/src/components/Request/RequestAddress.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from 'react';
import React, {useState, useEffect} from 'react';
import { TextField, Button, FormControl, InputLabel, Select, MenuItem, Box } from '@mui/material';
import '@fontsource/inter';
import Grid from '@mui/material/Grid';
Expand Down Expand Up @@ -61,7 +61,7 @@ export default function CreateRequestForm({requestData, setRequestData}) {

useEffect(() => {
handleGeocode();
}, [address1, address2, city, state, country, nop]);
}, [address1, address2, city, state, country, zip, fname, lname]);

return (
<ThemeProvider theme={customTheme}>
Expand Down

0 comments on commit 8842d71

Please sign in to comment.