Why won't you just grab data from the fucking database
This commit is contained in:
parent
8215036e80
commit
97788eff86
|
@ -13,10 +13,14 @@ export function Detail(props) {
|
|||
let { id } = useParams();
|
||||
|
||||
useEffect(() => {
|
||||
if (!movieData) {
|
||||
props.handler(id).then((movie) => setMovieData(movie))
|
||||
if (!movieData && typeof props.handler === 'function') {
|
||||
const fetchMovieData = async () => {
|
||||
const movieData = await props.handler(id);
|
||||
setMovieData(movieData);
|
||||
};
|
||||
fetchMovieData();
|
||||
}
|
||||
}, [id]);
|
||||
}, [id, movieData, props.handler]);
|
||||
|
||||
if (movieData) {
|
||||
return (
|
||||
|
|
|
@ -46,6 +46,7 @@ export function Signup ( props ) {
|
|||
}
|
||||
else {
|
||||
setValidemail(false)
|
||||
|
||||
}
|
||||
}, [useremail])
|
||||
|
||||
|
@ -58,6 +59,8 @@ export function Signup ( props ) {
|
|||
}
|
||||
}, [userpassword])
|
||||
|
||||
|
||||
|
||||
return (
|
||||
|
||||
<Container>
|
||||
|
@ -103,4 +106,4 @@ export function Signup ( props ) {
|
|||
</Row>
|
||||
</Container>
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue