Custom cart throws error for first time visitors

Hola,
La solución cuando invocamos el método getCurrentCart() de wix-stores-backend y da el sigiuente error:
Cart with person identity 46ef0d8c-23d5-46f5-87dd-5142a87f7a86 not found

//Backend → archivo producto.jsw
import wixStoresBackend from ‘wix-stores-backend’

export function getCurrentCart ( ) {
return wixStoresBackend . getCurrentCart ();
}

//Cart Page
import { getCurrentCart } from ‘backend/productos.jsw’

$w . onReady ( function () {
getCurrentCart ()
. then ( result => { arguments
console . log ( result , ‘current cart’ )
})
});

El problema es que en el ambiente de ‘Vista Previa’ no funciona el código su totalidad, debes publicar y ver el sitio, en ese ‘ambiente’ verás los cambios (el console.log())

Saludos!