Mattias Fjellvang

Results 316 comments of Mattias Fjellvang

Hay, what's the current status?

Using this non-nuxt library. https://github.com/mib200/vue-gtm - the preview mode works perfectly

I tested and it is indeed the GTM id I need to provide - pretty confusing tbh. Anyhow, I found the library to be full of bugs, and I am...

I have also tried with: this.$gtag('event', 'purchase', { transaction_id: '123', value: 4.56, currency: 'EUR', tax: '0.00', shipping: '1.00', coupon: '', items: [ { id: this.product.id, name: this.product.title, price: '123', quantity:...

After several attempts to modify the event data in different ways, and hours of debugging, I failed to get enhanced e-commerce tracking to work with this library. I instead tried...

Forgot to mention: when I use: ``` this.$gtag('event', 'your_event', { testing: 123 }); ``` I see "your_event" in the Network tab, but I don't see the associated data (e.g. testing.123)....

I am curious about this too. We're switching from https://www.npmjs.com/package/@ntegral/nestjs-sentry (as it seem unmaintained / buggy). However, that package has a really nice way to inject the sentry module into...

Basically this one feature is what's holding me back from using it

Hmm - I ended up just doing this: ``` import * as Sentry from '@sentry/node'; Sentry.captureMessage('Less than 3 profiles returned from relevantDatingProfiles', 'warning'); ``` And it seems to work just...