diff --git a/src/App.js b/src/App.js index e327698..89336b8 100644 --- a/src/App.js +++ b/src/App.js @@ -15,7 +15,7 @@ import { useStoreActions } from 'easy-peasy'; function App() { const setPosts = useStoreActions((actions) => actions.setPosts); - const { data, fetchError, isLoading } = useAxiosFetch('https://localhost:3500/posts'); + const { data, fetchError, isLoading } = useAxiosFetch('http://localhost:3500/posts'); useEffect(() => { setPosts(data);