woocommerce-paypal-payments/modules/ppcp-settings/resources/js/hooks/useNavigation.js
2025-01-10 15:13:41 +01:00

10 lines
281 B
JavaScript

/**
* Navigate to the WooCommerce "Payments" settings tab, i.e. exit the settings app.
*/
const goToWooCommercePaymentsTab = () => {
window.location.href = window.ppcpSettings.wcPaymentsTabUrl;
};
export const useNavigation = () => {
return { goToWooCommercePaymentsTab };
};