chore: Prepare for publishing the extension

This commit is contained in:
2024-01-30 09:42:09 +01:00
parent ea40258f48
commit 26f346f8b8
9 changed files with 45 additions and 9 deletions

View File

@@ -47,13 +47,13 @@ export function NotificationActions({ notification, detailsTarget, mutate }: Not
onAction={() => snoozeNotification(notification, mutate)}
/>
<Action.Push
title="Create Task"
title="Create Task..."
icon={Icon.Calendar}
shortcut={{ modifiers: ["ctrl"], key: "p" }}
shortcut={{ modifiers: ["ctrl"], key: "t" }}
target={<CreateTaskFromNotification notification={notification} mutate={mutate} />}
/>
<Action.Push
title="Link to Task"
title="Link to Task..."
icon={Icon.Link}
shortcut={{ modifiers: ["ctrl"], key: "l" }}
target={<LinkNotificationToTask notification={notification} mutate={mutate} />}