From a9e4e0d8b3a063eb686e4a15bbae94384a1c1528 Mon Sep 17 00:00:00 2001 From: asvarcas Date: Mon, 9 Mar 2020 10:23:20 -0300 Subject: [PATCH] Removed title prop. --- packages/ra-ui-materialui/src/layout/AppBar.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/ra-ui-materialui/src/layout/AppBar.js b/packages/ra-ui-materialui/src/layout/AppBar.js index 3f171b825b9..f6a63053e4a 100644 --- a/packages/ra-ui-materialui/src/layout/AppBar.js +++ b/packages/ra-ui-materialui/src/layout/AppBar.js @@ -56,7 +56,6 @@ const useStyles = makeStyles( * @param {string} color The color of the AppBar * @param {Object} logout The logout button component that will be pass to the UserMenu component * @param {boolean} open State of the Sidebar - * @param {string} title The title of the AppBar * @param {Function} userMenu A custom UserMenu component for the AppBar. UserMenu component by default * * @example @@ -82,7 +81,6 @@ const AppBar = ({ color = 'secondary', logout, open, - title, userMenu, ...rest }) => {