:wave: Flagging that the <CSV import logic> for s...
# give-feedback
b
👋 Flagging that the CSV import logic for saved groups seems like it doesn't make sense It's collapsing all the values onto one line, then splitting by
,
But a CSV of e.g. user IDs would normally look like this:
Copy code
user_id
a
b
c
This then turns into a single row in the group -
user_idabc
😂 So it should probably at least be putting a comma at the end of each line before removing the linebreaks?
s
Thanks for the feedback. We have an engineer checking this out now, as we're refining Saved Group behavior. That being said, I think the thinking behind this is that it's just expecting comma-separated values
a,b,c
without headers, etc.
n
hi James, thanks for flagging this. We were expecting
a,b,c
like Ryan mentioned but your post made us realize that newlines were a common separator. The behavior's been changed to support either format & the modal's been updated to clarify the expected format. Hope that helps!
🙌 1