Skip to content

Commit 44fd1d3

Browse files
authored
Merge pull request #5738 from WiXSL/fix-savecontext
Improve validation on possible SaveContext error if no context is supplied
2 parents 622ad77 + 2973158 commit 44fd1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ra-core/src/controller/details/SaveContext.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const useSaveContext = <
5252
): SaveContextValue => {
5353
const context = useContext(SaveContext);
5454

55-
if (!context.save || !context.setOnFailure) {
55+
if (!context || !context.save || !context.setOnFailure) {
5656
/**
5757
* The element isn't inside a <SaveContextProvider>
5858
* To avoid breakage in that case, fallback to props

0 commit comments

Comments
 (0)