Skip to content

Commit

Permalink
url update
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush-raj13 committed Jul 9, 2023
1 parent 9014436 commit 71d4d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/pages/flipkartScraperPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function FlipkartScraperPage() {
}

try {
const response = await axios.post('http://localhost:4000/run/generate', body);
const response = await axios.post('https://flipkart-scraper.onrender.com/run/generate', body);
setLoading(false);
setData(response.data)
setShowProductNameInTable(isProductNameChecked)
Expand Down Expand Up @@ -166,7 +166,7 @@ function FlipkartScraperPage() {
}

try {
const response = await axios.post('http://localhost:4000/run/generate', body);
const response = await axios.post('https://flipkart-scraper.onrender.com/run/generate', body);
setLoading(false);
setData(response.data)
} catch {
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/videoDownloaderPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function VideoDownloaderPage() {
}

try {
const response = await axios.post('http://localhost:3003/get-info', body);
const response = await axios.post('https://online-video-downloader-lq5s.onrender.com/get-info', body);
setLoading(false);
setData(response.data)
} catch {
Expand Down

0 comments on commit 71d4d04

Please sign in to comment.