Skip to content

Commit 5ed60c1

Browse files
committed
fix: removed console.logs
1 parent 1c27abc commit 5ed60c1

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/components/layout/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ const Layout = () => {
7777
!clientHasCurrency
7878
) {
7979
const query_param_currency = sessionStorage.getItem('query_param_currency') || currency || 'USD';
80-
console.log('query_param_currency', query_param_currency);
8180
sessionStorage.setItem('query_param_currency', currency);
8281
requestOidcAuthentication({
8382
redirectCallbackUri: `${window.location.origin}/callback`,

src/pages/callback/callback-page.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@ const CallbackPage = () => {
6464
: null;
6565
const selected_currency =
6666
(is_valid_currency ? state?.account?.currency || currency : currency) || firstAccountCurrency;
67-
console.log('selected_currency', {
68-
firstAccountCurrency,
69-
stateAccountCurrency: state?.account?.currency,
70-
currency,
71-
selected_currency,
72-
});
7367
window.location.assign(`/?account=${selected_currency}`);
7468
}}
7569
renderReturnButton={() => {

0 commit comments

Comments
 (0)