We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73e54f commit 845152fCopy full SHA for 845152f
packages/ra-core/src/controller/list/ListBase.tsx
@@ -46,7 +46,6 @@ import { useIsAuthPending } from '../../auth';
46
*/
47
export const ListBase = <RecordType extends RaRecord = any>({
48
children,
49
- disableAuthentication,
50
render,
51
loading,
52
offline,
@@ -66,7 +65,7 @@ export const ListBase = <RecordType extends RaRecord = any>({
66
65
67
const showLoading =
68
isAuthPending &&
69
- !disableAuthentication &&
+ !props.disableAuthentication &&
70
loading !== undefined &&
71
loading !== false;
72
0 commit comments