Change login url

This commit is contained in:
Mohamed Nouffer
2021-11-09 14:56:16 +05:30
parent a6bc5ffaf6
commit fa0adbb40f
19 changed files with 29 additions and 29 deletions

View File

@ -57,7 +57,7 @@ function Index() {
async function fetchData() {
// You can await here
if(selectedcons !== "" && report !== "" && isDate() == true) {
const result = await axios('https://fsbsso.sumasen.net/getDateToHaveData?construction_id=' + selectedcons + '&sheetname=' + report);
const result = await axios('https://fbssso.ts.bizside.biz/getDateToHaveData?construction_id=' + selectedcons + '&sheetname=' + report);
setValidDates(result.data.record);
}
}

View File

@ -36,7 +36,7 @@ function Uploader(props) {
// body: data,
// headers: {'Content-Type': 'multipart/form-data' }
// })
axios.post("https://fsbsso.sumasen.net/upload?email=" + props.email, data)
axios.post("https://fbssso.ts.bizside.biz/upload?email=" + props.email, data)
.then(res => { // then print response status
console.log(res.statusText)
if (res.statusText == 'OK') {