63% of signups never connect a data source — is that an onboarding problem or a wrong-user problem
The product is useless until you connect an account, and roughly two thirds of signups never do it. They land in an empty dashboard, click around for a couple of minutes, and leave.
I have rewritten the connect screen twice and added a progress bar, which moved nothing. Now I cannot tell whether the screen is bad, the permission scopes are scary, or these are simply people who signed up out of curiosity and were never going to connect anything.
How do you tell the difference without guessing?
@scopecreep_sam · 2w ago · 2 replies
Before any redesign, find out where inside the connect flow they stop. "Did not connect" is not one event, it is at least four: never clicked connect, clicked and did not reach the provider, reached the provider and abandoned the consent screen, consented and hit an error on the way back.
Instrument those four. The shape of the answer decides everything. Mass abandonment at the consent screen is a scopes and trust problem. Failures on the callback is a bug you cannot see because it only happens to accounts unlike yours. Never clicking at all is a motivation problem and no amount of design fixes it.
I assumed mine was design for three months. It was a callback error affecting one provider's business accounts.
Reply
Report
@hemline_hank · 2w ago
Strongly seconding the callback bit. Log the failure with the provider's error string attached, not just "connect failed". Half of these are one specific account type, an expired token, or a redirect URI that only breaks on a subdomain you forgot about, and none of that is visible from your own test account.
Reply
Report