Skip to content

Commit

Permalink
fix: https to http
Browse files Browse the repository at this point in the history
  • Loading branch information
jun-brro committed May 16, 2024
1 parent 03f2352 commit eed4fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pages/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const MainPage: React.FC = () => {

try {
const response = await axios.post(
"https://58.233.143.58:5000/upload",
"http://58.233.143.58:5000/upload",
formData,
{
headers: {
Expand All @@ -44,7 +44,7 @@ const MainPage: React.FC = () => {
const checkTaskStatus = async () => {
try {
const statusResponse = await axios.get(
`https://58.233.143.58:5000/task/${task_id}`
`http://58.233.143.58:5000/task/${task_id}`
);
const { status, searchResult } = statusResponse.data;

Expand Down

0 comments on commit eed4fd5

Please sign in to comment.