From aa44aa35b739f47907493acba88f984ee3128a54 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 3 Aug 2021 11:57:06 -0400 Subject: [PATCH] Revert change default hotbar name Signed-off-by: Sebastian Malton --- src/common/hotbar-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/hotbar-store.ts b/src/common/hotbar-store.ts index 1c6355139b..6e771473fb 100644 --- a/src/common/hotbar-store.ts +++ b/src/common/hotbar-store.ts @@ -71,7 +71,7 @@ export class HotbarStore extends BaseStore { @action protected fromStore(data: Partial = {}) { if (!data.hotbars || !data.hotbars.length) { - const hotbar = getEmptyHotbar("default"); + const hotbar = getEmptyHotbar("Default"); const { metadata: { uid, name, source } } = catalogEntity; const initialItem = { entity: { uid, name, source } };