I’m trying to access some data stored in the Magento_Customer/js/customer-data object I have the following files: — garage.js — define([ ‘Magento_Customer/js/customer-data’ ], function(customerData){ ‘use strict’; return { getCustomerName: function(){ return customerData.get(“garage”)(); } } }); — sidebar.phtml — <script type=”text/javascript”> require([‘Revival_Garage/js/view/garage’], function(garage){ console.log(“–“); console.log(garage.getCustomerName()); console.log(“–“); // document.getElementById(“customer_garage”).innerHTML = garage.getCustomerName(); }); </script> <span id=”customer_garage”> </span> When theRead more