You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even though I'm passing profile.email as the userId prop, when I go to the Feedback Fish dashboard the userId field for the feedback is showing as profile.userId and I don't have the option to "Reply with Mail".
<FeedbackFish
projectId={process.env.REACT_APP_FEEDBACK_FISH_PROJECT as string}
userId={profile.email}
metadata={profile}
>
...
</FeedbackFish>
Here's the profile I'm sending as metadata. Some fields removed or redacted...
Since the documentation says to pass the email address of the user, I would expect that no matter what I pass in the metadata, the value I assign to the userId prop would be respected (maybe even validated to be an email - a warning could be displayed in the console in development mode). Especially with the "Reply with Mail" feature seeming to hinge on the value of the userId prop being an email address.
It may even make sense to change the userId prop to email to be more clear what you're asking for.
Actual Behavior
The value of the userId field shown in the Feedback Fish shows 17, which is the value of profile.userId passed in metadata. Furthermore, the "Reply with Mail" button is not displayed in the Feedback Fish dashboard.
The text was updated successfully, but these errors were encountered:
Version: 1.2.1
Problem
Even though I'm passing
profile.email
as theuserId
prop, when I go to the Feedback Fish dashboard the userId field for the feedback is showing asprofile.userId
and I don't have the option to "Reply with Mail".Here's the profile I'm sending as metadata. Some fields removed or redacted...
Expected Behavior
Since the documentation says to pass the email address of the user, I would expect that no matter what I pass in the metadata, the value I assign to the
userId
prop would be respected (maybe even validated to be an email - a warning could be displayed in the console in development mode). Especially with the "Reply with Mail" feature seeming to hinge on the value of theuserId
prop being an email address.It may even make sense to change the
userId
prop toemail
to be more clear what you're asking for.Actual Behavior
The value of the userId field shown in the Feedback Fish shows
17
, which is the value ofprofile.userId
passed inmetadata
. Furthermore, the "Reply with Mail" button is not displayed in the Feedback Fish dashboard.The text was updated successfully, but these errors were encountered: