Feedback survey eligibility check simplified into one combined helper
The check that decides whether a feedback survey branch should run has been consolidated into a single helper function. Previously it checked that the account type was 'firstParty' and separately required the current interaction to be of kind 'post' or 'share' (denying 'share' if an error state existed); now a single helper checks three conditions together, including the 'firstParty' account type and the absence of an error state.
This is an internal simplification of the eligibility logic for showing a feedback survey; it does not change what users see, but it does drop the explicit 'post'/'share' interaction-kind check from this branch.
Whether the interaction-kind restriction is preserved elsewhere or has effectively been dropped is not stated.