Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrine-ds committed Nov 16, 2023
1 parent 741d591 commit 6ea3421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion clients/payment/src/components/PaymentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ export const PaymentForm = ({ paymentLink }: Props) => {
])
) {
Router.replace("Success");
console.log(values);
}
});
};
Expand Down
4 changes: 2 additions & 2 deletions clients/payment/src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const initSentry = () => {
init({
release: env.VERSION,
dsn: "TODO",
environment: env.PAYMENT_URL.includes("preprod")
environment: env.CLIENT_PAYMENT_URL.includes("preprod")
? "preprod"
: env.PAYMENT_URL.includes("master")
: env.CLIENT_PAYMENT_URL.includes("master")
? "master"
: "prod",
normalizeDepth: 5,
Expand Down

0 comments on commit 6ea3421

Please sign in to comment.