We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6308772 commit 6163330Copy full SHA for 6163330
1 file changed
src/App.tsx
@@ -1058,6 +1058,15 @@ export function App() {
1058
status: agent.status,
1059
requestedAt: agent.requested_at ?? agent.requestedAt,
1060
approvedAt: agent.approved_at ?? agent.approvedAt,
1061
+ onboardingAuth: agent.onboardingAuth ?? (
1062
+ agent.onboarding_auth_status || agent.onboardingAuthStatus
1063
+ ? {
1064
+ status: agent.onboarding_auth_status ?? agent.onboardingAuthStatus,
1065
+ length: agent.onboarding_auth_length ?? agent.onboardingAuthLength,
1066
+ checkedAt: agent.onboarding_auth_checked_at ?? agent.onboardingAuthCheckedAt,
1067
+ }
1068
+ : undefined
1069
+ ),
1070
profile: agent.profile,
1071
})),
1072
directConversations: (directConversationsPayload.conversations ?? current.directConversations).map(
0 commit comments