Skip to content

Commit

Permalink
Remove .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
felixtanhm committed May 6, 2024
1 parent 3a6e5db commit 2eeda64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ function PokeList() {
const response = await fetch(endpoint);
const result = await response.json();

const response2 = await fetch("http://localhost:3000/pokemon/");
const result2 = await response2.json();
console.log(result2);
// const response2 = await fetch("http://localhost:3000/pokemon/");
// const result2 = await response2.json();
// console.log("result2");
// console.log(result2);

if (result.results) {
const { count, next, previous } = { ...result };
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
env

0 comments on commit 2eeda64

Please sign in to comment.