(function() {
const params = new Proxy(new URLSearchParams(window.location.search), {
get: (searchParams, prop) => searchParams.get(prop),
});
if (params.quoteId) {
localStorage.setItem('quoteId', params.quoteId);
}
const quote = {
externalPartnerId:'2796', // Set the externalPartnerId value
sourceUrl:'https://fuelassetfinance.com.au', // Same sourceUrl as the Widget Tool
};
localStorage.setItem('quote', JSON.stringify(quote));
// HOST URL
localStorage.setItem('sourceUrl', 'https://fuelassetfinance.com.au'); // Same sourceUrl as the Widget Tool
})();