Mohammad Khalesi

Results 5 comments of Mohammad Khalesi

@RusinovAnton i have this problem too . when run project in ssr with command : npm run dev:ssr get same error: ``` return new DeviceUUID(navigator.userAgent); ^ ReferenceError: navigator is not...

@ezzabuzaid thanks for response but i checked isPlatformBrowser anywhere project use 'deviceuuid' `const deviceId = isPlatformBrowser(this.platfromId) ? new DeviceUUID().get() : ' ' ;` @biggora

@ezzabuzaid Thank you very much for Help i worked based on your tips like this: ``` if (isPlatformBrowser(this.platformId)) { import('device-uuid').then( module => { const deviceId = new module.DeviceUUID().get() ; });...

Hi To update Product Prices: There is a **ProductPriceChangedIntegrationEvent** event in **Catalog.API** When the product is updated, this event creates and sends a message to RabbitMQ https://github.com/dotnet/eShop/blob/d484a40a4795f306492c8b48fd715d441bf23ef0/src/Catalog.API/Apis/CatalogApi.cs#L241 . Then we...

@Parziphal i worked based on your tips like this: ``` if (isPlatformBrowser(this.platformId)) { import('device-uuid').then( module => { const deviceId = new module.DeviceUUID().get() ; }); } ``` and worked properly thanks...