Skip to content

Commit 99614c1

Browse files
authored
fix build error (#114)
1 parent 1b5a52d commit 99614c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/state/unraid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ export const useUnraidHistory = () =>
551551
useUnraidStore(
552552
useShallow((state) =>
553553
state.history
554-
? state.history.order.map((id) => state.history?.items[id])
554+
? state.history.order.map((id) => state.history!.items[id])
555555
: [],
556556
),
557557
);

0 commit comments

Comments
 (0)