diff --git a/src/renderer/components/layout/sidebar.tsx b/src/renderer/components/layout/sidebar.tsx index 63eb053ec7..0cde9b3d62 100644 --- a/src/renderer/components/layout/sidebar.tsx +++ b/src/renderer/components/layout/sidebar.tsx @@ -211,8 +211,8 @@ export class Sidebar extends React.Component { const hotbarStore = HotbarStore.getInstance(); const isAddedToActive = HotbarStore.getInstance().isAddedToActive(this.clusterEntity); const title = isAddedToActive - ? "Remove from hotbar" - : "Add to hotbar"; + ? "Remove from Hotbar" + : "Add to Hotbar"; const onClick = isAddedToActive ? () => hotbarStore.removeFromHotbar(metadata.uid) : () => hotbarStore.addToHotbar(this.clusterEntity);