From 83244ceefc165563f2093ff2c3b0a64f9cec696d Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 12 May 2023 15:02:29 -0400 Subject: [PATCH] chore: Fix more lint Signed-off-by: Sebastian Malton --- .../hotbar/storage/main/welcome-page-migration.test.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/core/src/features/hotbar/storage/main/welcome-page-migration.test.ts b/packages/core/src/features/hotbar/storage/main/welcome-page-migration.test.ts index 91541f43e3..31cb3a4092 100644 --- a/packages/core/src/features/hotbar/storage/main/welcome-page-migration.test.ts +++ b/packages/core/src/features/hotbar/storage/main/welcome-page-migration.test.ts @@ -9,14 +9,15 @@ import type { HotbarData } from "../common/hotbar"; import type { HotbarItem } from "../common/types"; import v640HotbarStoreMigrationInjectable from "./welcome-page-migration.injectable"; import { defaultHotbarCells } from "../common/types"; +import { array } from "@k8slens/utilities"; -function fillWithEmpties(items: HotbarItem[]) { - const emptyHotBarItems = new Array(defaultHotbarCells).fill(null); +function fillWithEmpties(items: (HotbarItem | null)[]) { + const emptyHotBarItems = array.filled(defaultHotbarCells, null); return [...items, ...emptyHotBarItems.slice(items.length)]; } -function setFirstHotbarItems(store: MigrationStore, items: HotbarItem[]) { +function setFirstHotbarItems(store: MigrationStore, items: (HotbarItem | null)[]) { const oldHotbars = store.get("hotbars") as HotbarData[]; // empty hotbar items are nulls const itemsWithEmptyCells = fillWithEmpties(items);