Vadorequest
Vadorequest
See https://github.com/UnlyEd/next-right-now/pull/7 ```tsx ``` `userProperties` here are sent (as $identify event) after the first event is sent (in our case, using `` in the page components). This breaks analytics because...
I got the following warning in my app once I enabled reactStrictMode. ``` Warning: Legacy context API has been detected within a strict-mode tree. The old API will be supported...
Examples on using userProperties (with array) using $append, $prepend, $preInsert, $postInsert, etc.
There is no example/recommandation on how to track user properties. https://help.amplitude.com/hc/en-us/articles/205406617-Identify-API-Modify-User-Properties#keys-for-the-identification-argument For instance, I'd like to track my users path, like which pages they visited, in what order. Or also...
The `LogOnChange` works a bit differently than `LogOnMount`, as it doesn't trigger on the initial mount phase, as I had expected. Also, the `value` prop isn't required and doesn't log...
https://help.amplitude.com/hc/en-us/articles/115000959052#instrumenting%C2%A0user-properties There is no example on how to use `setOnce` when applying user properties, could we add one? Is it possible with the current state of this lib?
I wonder why the `debounceInterval ` is not available on `LogOnMount` component. I'd have a use for it so that all LogOnMount events are delayed the first time they're triggered,...
I have the following dynamic entity in one of my models: ```py # Dynamic relationship to either Org, Institution or Campus entities generic_owner_content_type = models.ForeignKey( ContentType, on_delete=models.CASCADE, # TODO check...
I have the following model in `models.py` ```py from django.contrib.contenttypes.fields import GenericRelation from django.db import models from jsonfield import JSONField class Org(models.Model): name = models.SlugField( help_text="Name which references the organisation...
Personally, display several messages at the same time doesn't works, only one is displayed. Sometimes if I change the content or the message type it works again.
This starter is great and helped me bootstrap my extension quite fast, thanks! I got slowed down due to the lack of Async/Await support, though. I tried to use https://github.com/mozilla/webextension-polyfill#basic-setup...