Merged in feature/america (pull request #847)

Feature/america
This commit is contained in:
Patrick Fic
2023-06-06 23:04:34 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -230,7 +230,7 @@ export function* onSendPasswordResetStart() {
export function* sendPasswordResetEmailSaga({ payload }) {
try {
yield sendPasswordResetEmail(auth, payload, {
url: "https://imex.online/passwordreset",
url: "https://romeonline.io/passwordreset",
});
yield put(sendPasswordResetSuccess());

View File

@@ -277,7 +277,7 @@ async function CalculateRatesTotals({ job, client }) {
amount: Math.round((item.act_price || 0) * 100),
});
}
if (item.line_desc.toLowerCase().includes("hazardous waste")) {
if (item.line_desc?.toLowerCase().includes("hazardous waste")) {
hasMahwLine = item;
}