Skip to content
This repository was archived by the owner on Nov 23, 2024. It is now read-only.

Commit 6e0a038

Browse files
committedJan 19, 2021
remove setting error to undefined to enable SSR with Next.js (getServerSideProps)
1 parent 206bd44 commit 6e0a038

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎src/core/buildSlice.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function buildSlice({
9898
if (substate.requestId !== meta.requestId) return;
9999
substate.status = QueryStatus.fulfilled;
100100
substate.data = copyWithStructuralSharing(substate.data, payload.result);
101-
substate.error = undefined;
101+
delete substate.error;
102102
substate.fulfilledTimeStamp = payload.fulfilledTimeStamp;
103103
});
104104
})

‎test/errorHandling.test.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ describe('query error handling', () => {
148148
isError: false,
149149
isSuccess: true,
150150
data: { value: 'success' },
151-
error: undefined,
152151
})
153152
);
154153
});

0 commit comments

Comments
 (0)