Skip to content

Commit

Permalink
fix: random meme generator play was breaking due to broken api url (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
murtuzaalisurti committed May 14, 2023
1 parent 788d68d commit 3f6baa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plays/random-meme-generator/RandomMemeGenerator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function RandomMemeGenerator(props) {

const getMeme = useCallback(() => {
setIsLoading(true);
fetch('https://meme-api.herokuapp.com/gimme')
fetch('https://meme-api.com/gimme')
.then((res) => {
return res.json();
})
Expand Down

0 comments on commit 3f6baa3

Please sign in to comment.