diff --git a/.changeset/nice-candles-argue.md b/.changeset/nice-candles-argue.md new file mode 100644 index 0000000000..971000410a --- /dev/null +++ b/.changeset/nice-candles-argue.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-user-settings': minor +--- + +Add settings button to sidebar diff --git a/plugins/user-settings/src/components/Settings.tsx b/plugins/user-settings/src/components/Settings.tsx index f754f1e7c3..25559299a8 100644 --- a/plugins/user-settings/src/components/Settings.tsx +++ b/plugins/user-settings/src/components/Settings.tsx @@ -16,19 +16,15 @@ import React from 'react'; import { SidebarItem } from '@backstage/core'; -import { SignInAvatar } from './General'; -import { useUserProfile } from './useUserProfileInfo'; +import SettingsIcon from '@material-ui/icons/Settings'; import { settingsRouteRef } from '../plugin'; export const Settings = () => { - const { displayName } = useUserProfile(); - const SidebarAvatar = () => ; - return ( ); };