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
I am facing an issue where all the chat sessions of a user are not loaded in the history session. When I am starting a new session, the data is being stored in the DynamoDB table SessionsTable. I can explore the items from DynamoDB console manually.
But all the items are not loaded on the UI. The UI returns only 41 sessions for that user while the dynamo db table has 179 records for that user.
The following code in sessions.tsx class returns only 41 records consistently for that user. While for other users, the issue is not reproducible.
const getSessions = useCallback(async () => {
if (!appContext) return;
const apiClient = new ApiClient(appContext);
const result = await apiClient.sessions.getSessions();
if (ResultValue.ok(result)) {
setSessions(result.data);
}
}, [appContext]);
The text was updated successfully, but these errors were encountered:
I am facing an issue where all the chat sessions of a user are not loaded in the history session. When I am starting a new session, the data is being stored in the DynamoDB table
SessionsTable
. I can explore the items from DynamoDB console manually.But all the items are not loaded on the UI. The UI returns only 41 sessions for that user while the dynamo db table has 179 records for that user.
The following code in
sessions.tsx
class returns only 41 records consistently for that user. While for other users, the issue is not reproducible.The text was updated successfully, but these errors were encountered: