If you get this message for a tour step or a hint, then you have to check the URL template field on the particular step/hint. It has to match the URL where it should be visible. Typical issues are:
https://example.com/user-profile/132
or https://example.com/user-profile/john@smith.com
?
and it is always in a form of key=value
. Multiple parameters are separated by &
. For example https://example.com/project?id=123&otherParam=val
The solution is to use dynamic placeholders. Check out this article.
Always check if the URL matches the current URL. Use dynamic placeholders for dynamic URLs.