Skip to content

Commit

Permalink
Remove logging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
epeicher committed Jul 18, 2024
1 parent da50aad commit 71d3b80
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
6 changes: 0 additions & 6 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,6 @@ if ( !! window.wcCalypsoBridge.isWooExpress ) {
scope: 'woocommerce-admin',
} );
}
console.log(
'is it ecommerce plan trial??',
window.wcCalypsoBridge.isEcommercePlanTrial
);

if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) {
import( './free-trial/fills' );
Expand Down Expand Up @@ -184,9 +180,7 @@ if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) {
render: GetPaidWithSquareFill,
} );
}
console.log( 'in the main index but outside paypal connect url??' );
if ( window?.wcCalypsoBridge?.paypal_connect_url ) {
console.log( 'in the main index??' );
// Setup PayPal task fill (Partner Aware Onboarding).
registerPlugin( 'wc-calypso-bridge-task-setup-woocommerce-paypal', {
scope: 'woocommerce-tasks',
Expand Down
4 changes: 0 additions & 4 deletions src/task-fills/get-paid-with-paypal.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ import React from 'react';
import { WooOnboardingTaskListItem } from '@woocommerce/onboarding';

export const GetPaidWithPayPalFill = () => {
console.log(
'hola en el getpaid fill',
window.wcCalypsoBridge.paypal_connect_url
);
return (
<WooOnboardingTaskListItem id="get-paid-with-paypal">
{ ( { defaultTaskItem: DefaultTaskItem } ) => (
Expand Down
4 changes: 0 additions & 4 deletions src/task-headers/get-paid-with-paypal.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ import TimerImage from './assets/images/timer.svg';
import { WC_ASSET_URL } from '../utils/admin-settings';

const GetPaidWithPayPalHeader = () => {
console.log(
'hola en el getpaid',
window.wcCalypsoBridge.paypal_connect_url
);
return (
<WooOnboardingTaskListHeader id="get-paid-with-paypal">
{ ( { task, goToTask } ) => {
Expand Down

0 comments on commit 71d3b80

Please sign in to comment.