Hi @afzalpansuvi,
Do you have a timeline on the release of the next version of woocommerce-payments? That is the plugin that is throwing the error. The changes to the new version of WooCommerce is what is now causing the error to pop up.
Thank you @shameemreza for the advise, my apologies.
I agree that editing the core is not the best solution, however the error was triggering my OCD.
The third parameter in the call is deprecated, this issue is fixed by removing the 3rd parameter on line 141 in file /wp-content/plugins/woocommerce-payments/includes/multi-currency/Analytics.php
Current line:
$data_registry->add( ‘customerCurrencies’, $currency_options, true );
Fixed line:
$data_registry->add( ‘customerCurrencies’, $currency_options );