Skip to content

Commit

Permalink
Dar uso a una variable
Browse files Browse the repository at this point in the history
  • Loading branch information
UO271728 committed May 3, 2022
1 parent 567cb05 commit c7694fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/PayForm/ProcesoPago.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ const ProcesoPago: React.FC<Props> = ({ cartItems }) => {
toast.warn("Por favor, inicie sesión con su POD para que podamos obtener su dirección", { position: toast.POSITION.TOP_CENTER })
} else {
let variable = await getGastosEnvio();
console.log(variable)
if (gastosEnvio === 0.00 || localStorage.getItem("direccion") === "null") {
toast.error("Su dirección no fue encontrada, lo sentimos. Para solucionar el problema " +
"modifique la dirección de su POD", { position: toast.POSITION.TOP_CENTER })
variable++;
} else {
setPasoActual((pasoPrevio) => pasoPrevio + 1);
}
Expand Down

0 comments on commit c7694fb

Please sign in to comment.