Skip to content

Commit 442d856

Browse files
committed
lintエラー修正
1 parent 01b44fb commit 442d856

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/terminal/embedContext.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export function EmbedContextProvider({ children }: { children: ReactNode }) {
6565
const [replOutputs, setReplOutputs] = useState<
6666
Record<TerminalId, ReplCommand[]>
6767
>({});
68+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
6869
const [commandIdCounters, setCommandIdCounters] = useState<
6970
Record<TerminalId, number>
7071
>({});

app/terminal/exec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
systemMessageColor,
88
useTerminal,
99
} from "./terminal";
10-
import { writeOutput, ReplOutput } from "./repl";
10+
import { writeOutput } from "./repl";
1111
import { useEffect, useState } from "react";
1212
import { useEmbedContext } from "./embedContext";
1313
import { RuntimeLang, useRuntime } from "./runtime";

0 commit comments

Comments
 (0)