From fda8480c7f61929e0564cf0f885a23bae05d46ff Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 19 Oct 2021 08:54:04 -0400 Subject: [PATCH] Capatilize Hotbar Signed-off-by: Sebastian Malton --- src/renderer/components/layout/sidebar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);