Skip to content

Commit 1b3f642

Browse files
committed
Remove unused notification
1 parent b60effb commit 1b3f642

File tree

1 file changed

+1
-3
lines changed
  • packages/shared/src/tasks

1 file changed

+1
-3
lines changed

packages/shared/src/tasks/api.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
defineRequest,
1616
} from "../ipc/protocol";
1717

18-
import type { Task, TaskDetails, TaskLogEntry, TaskTemplate } from "./types";
18+
import type { Task, TaskDetails, TaskTemplate } from "./types";
1919

2020
export interface InitResponse {
2121
tasks: readonly Task[];
@@ -59,7 +59,6 @@ const viewLogs = defineCommand<TaskIdParams>("viewLogs");
5959

6060
const taskUpdated = defineNotification<Task>("taskUpdated");
6161
const tasksUpdated = defineNotification<Task[]>("tasksUpdated");
62-
const logsAppend = defineNotification<TaskLogEntry[]>("logsAppend");
6362
const refresh = defineNotification<void>("refresh");
6463
const showCreateForm = defineNotification<void>("showCreateForm");
6564

@@ -82,7 +81,6 @@ export const TasksApi = {
8281
// Notifications
8382
taskUpdated,
8483
tasksUpdated,
85-
logsAppend,
8684
refresh,
8785
showCreateForm,
8886
} as const;

0 commit comments

Comments
 (0)