From bd5974827c768d2f347c36878fd2c68bcd695b6e Mon Sep 17 00:00:00 2001 From: tomsmith8 Date: Fri, 17 Apr 2026 08:54:25 +0000 Subject: [PATCH 1/2] Generated with Hive: Remove non-functional shortcut labels from workspace switcher --- src/components/WorkspaceSwitcher.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/WorkspaceSwitcher.tsx b/src/components/WorkspaceSwitcher.tsx index 6303d412c9..cc810db72e 100644 --- a/src/components/WorkspaceSwitcher.tsx +++ b/src/components/WorkspaceSwitcher.tsx @@ -7,7 +7,6 @@ import { DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, - DropdownMenuShortcut, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu"; import { Skeleton } from "@/components/ui/skeleton"; @@ -211,7 +210,6 @@ export function WorkspaceSwitcher({ {workspace.name} - ⌘{index + 2} ))} From 705921f34663905fab6efefdc6679f49cd824dbd Mon Sep 17 00:00:00 2001 From: tomsmith8 Date: Mon, 4 May 2026 22:12:16 +0000 Subject: [PATCH 2/2] Generated with Hive: Increase notification trigger test timeouts to fix CI flakiness --- .../services/task-assignment-notification.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/__tests__/integration/services/task-assignment-notification.test.ts b/src/__tests__/integration/services/task-assignment-notification.test.ts index 13c7db48a7..dddf4a5f82 100644 --- a/src/__tests__/integration/services/task-assignment-notification.test.ts +++ b/src/__tests__/integration/services/task-assignment-notification.test.ts @@ -83,7 +83,7 @@ describe("TASK_ASSIGNED notification", () => { await updateTicket(task.id, owner.id, { assigneeId: assignee.id }); - await new Promise((r) => setTimeout(r, 100)); + await new Promise((r) => setTimeout(r, 500)); const record = await db.notificationTrigger.findFirst({ where: { @@ -145,7 +145,7 @@ describe("TASK_ASSIGNED notification", () => { await updateTicket(plainTask.id, plainOwner.id, { assigneeId: plainAssignee.id }); - await new Promise((r) => setTimeout(r, 100)); + await new Promise((r) => setTimeout(r, 500)); const record = await db.notificationTrigger.findFirst({ where: { @@ -162,7 +162,7 @@ describe("TASK_ASSIGNED notification", () => { it("does NOT create a notification when self-assigning", async () => { await updateTicket(task.id, owner.id, { assigneeId: owner.id }); - await new Promise((r) => setTimeout(r, 100)); + await new Promise((r) => setTimeout(r, 500)); const records = await db.notificationTrigger.findMany({ where: { notificationType: NotificationTriggerType.TASK_ASSIGNED }, @@ -174,7 +174,7 @@ describe("TASK_ASSIGNED notification", () => { it("does NOT create a notification for system assignees", async () => { await updateTicket(task.id, owner.id, { assigneeId: "system:task-coordinator" }); - await new Promise((r) => setTimeout(r, 100)); + await new Promise((r) => setTimeout(r, 500)); const records = await db.notificationTrigger.findMany({ where: { notificationType: NotificationTriggerType.TASK_ASSIGNED }, @@ -239,7 +239,7 @@ describe("TASK_ASSIGNED notification — DM not configured (no lightningPubkey)" it("creates a SKIPPED notification_trigger row when user has no lightningPubkey", async () => { await updateTicket(task.id, owner.id, { assigneeId: assignee.id }); - await new Promise((r) => setTimeout(r, 100)); + await new Promise((r) => setTimeout(r, 500)); const record = await db.notificationTrigger.findFirst({ where: {