chore(lint): no-unused-vars in app

This commit is contained in:
Mohamed Boudra
2026-04-24 03:23:01 +07:00
parent 75becbe138
commit 5ad911e00d
3 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ export async function pressNewTabShortcut(page: Page): Promise<void> {
// ─── Tab bar assertions ───────────────────────────────────────────────────
/** @deprecated The launcher panel was removed. Actions go directly to their target. */
export async function waitForLauncherPanel(page: Page): Promise<void> {
export async function waitForLauncherPanel(_page: Page): Promise<void> {
// No-op: the launcher panel no longer exists.
}

View File

@@ -580,7 +580,7 @@ describe("workspace-layout-store actions", () => {
const store = useWorkspaceLayoutStore.getState();
store.openTabFocused(workspaceKey, { kind: "file", path: "/repo/worktree/a.ts" });
const secondTabId = store.openTabFocused(workspaceKey, {
store.openTabFocused(workspaceKey, {
kind: "file",
path: "/repo/worktree/b.ts",
});

View File

@@ -124,7 +124,7 @@ describe("voice runtime", () => {
it("moves from listening to playing on the first assistant audio", async () => {
const adapter = createSessionAdapter();
const { runtime, engine } = createRuntime();
const { runtime, engine: _engine } = createRuntime();
runtime.registerSession(adapter);
await runtime.startVoice("server-1", "agent-1");