Removed The Buy Now Cart Only

This commit is contained in:
devansh bawari 2021-10-04 10:43:48 +05:30
parent 814eeafa6a
commit 4ca31116b3
1 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@ class CartMerger
*/
public function handle($request, Closure $next)
{
\Cart::mergeDeactivatedCart();
/**
* Currently removing the buy now cart only because in live
* instance merging not happen properly need to check this.
*/
\Cart::activateCartIfSessionHasDeactivatedCartId();
return $next($request);
}