1.3.6(1) Resolved local upload issues due to form type.

This commit is contained in:
Patrick Fic
2022-05-17 16:03:16 -07:00
parent 2ad694ceda
commit a183a0fef6
9 changed files with 151 additions and 104 deletions

View File

@@ -109,12 +109,13 @@ export function* signInSuccessSaga({ payload }) {
const shop = yield client.query({ query: QUERY_BODYSHOP });
logImEXEvent("imexmobile_sign_in_success", payload);
yield put(
setBodyshop({
...shop.data.bodyshops[0],
localmediaserverhttp: `http://192.168.1.235:8000`,
})
);
yield put(setBodyshop(shop.data.bodyshops[0]));
// yield put(
// setBodyshop({
// ...shop.data.bodyshops[0],
// localmediaserverhttp: `http://192.168.0.142:8000`,
// })
// );
} catch (error) {
console.log("UH-OH. Couldn't get shop details.", error);
}