Skip to content

Commit 9c7a327

Browse files
committed
Applied review
1 parent 5ecded5 commit 9c7a327

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/Authentication.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,11 @@ const authProvider = {
105105
});
106106
},
107107
checkAuth: () => {
108-
return localStorage.getItem('auth') ? Promise.resolve() : Promise.reject();
108+
// Required for the authentication to work
109+
return Promise.resolve();
109110
},
110111
getPermissions: () => {
112+
// Required for the authentication to work
111113
return Promise.resolve();
112114
},
113115
// ...

0 commit comments

Comments
 (0)