diff --git a/src/commands/home.ts b/src/commands/home.ts index 5ab1860..d847271 100644 --- a/src/commands/home.ts +++ b/src/commands/home.ts @@ -269,7 +269,7 @@ export default class AppHome implements Command { .slice(0, 4) .map( (e) => - `${e.icon}${e.isDone ? `:white_check_mark: ` : ":loading:"} -- ${e.content?s.length > 0 ? e.contents.join(", ") : e.shipmentTitle}`, + `${e.icon}${e.isDone ? `:white_check_mark: ` : ":loading:"} -- ${e.contents?.length > 0 ? e.contents.join(", ") : e.shipmentTitle}`, ) .join("\n")}`, },