Skip to content
This repository was archived by the owner on Jan 11, 2026. It is now read-only.

Commit 2ea5af4

Browse files
committed
style: fix formatting
1 parent 5bfde66 commit 2ea5af4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/tui/src/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ const App = () => {
143143
if (command === "inspect" && args.length >= 1) {
144144
const itemName = args[0]!.toLowerCase();
145145
// Search in room contents and inventory
146-
const allItems = [...getRoomContents(), ...inventory].filter((i): i is Entity => i !== undefined);
146+
const allItems = [...getRoomContents(), ...inventory].filter(
147+
(i): i is Entity => i !== undefined,
148+
);
147149
const item = allItems.find((i) => (i["name"] as string)?.toLowerCase() === itemName);
148150
if (item) {
149151
handleInspect(item);

0 commit comments

Comments
 (0)