mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
add paginated to store, and fix upload docs property
This commit is contained in:
@@ -191,8 +191,8 @@ function Upload({
|
||||
)) ||
|
||||
[],
|
||||
);
|
||||
if (data && Array.isArray(data.docs)) {
|
||||
data.docs.map((updatedDoc: Doc) => {
|
||||
if (data && Array.isArray(data)) {
|
||||
data.map((updatedDoc: Doc) => {
|
||||
if (updatedDoc.id && !docIds.has(updatedDoc.id)) {
|
||||
// Select the doc not present in the intersection of current Docs and fetched data
|
||||
dispatch(setSelectedDocs(updatedDoc));
|
||||
|
||||
Reference in New Issue
Block a user