Skip to content

Commit

Permalink
props removal
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanta-m committed May 13, 2023
1 parent fa0eadd commit 123a8e1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions package/components/surfaces/CoreAppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,7 @@ export default function CoreAppBar(props) {

return (
<>
<NativeAppBar
{...props}
handleDrawer={handleDrawer}
navigateString={"/" + urls.DASHBOARD}
auth={auth}
>
<NativeAppBar {...props}>
<CoreToolbar
styleClasses={[
UtilityClasses.ALIGNMENT.JUSTIFY_CONTENT_SPACE_BETWEEN,
Expand Down Expand Up @@ -103,7 +98,7 @@ export default function CoreAppBar(props) {
height={30}
width={100}
onClick={() => {
navigate(navigateString);
navigate("/" + urls.DASHBOARD);
}}
// styleClasses={[StyledComponentClasses.CORE_APP_BAR.APP_BAR_LOGO]}
/>
Expand Down

0 comments on commit 123a8e1

Please sign in to comment.