Hooks::filter_js_include_checkout_url( $urls )
Source
File: src/Tickets/Commerce/Hooks.php
public function filter_js_include_checkout_url( $urls ) {
// Note the checkout needs to pass by the cart URL first for AR modal.
$urls[ Module::class ] = tribe( Cart::class )->get_url();
return $urls;
}