Skip to content

Commit d63ae2d

Browse files
committed
lintエラー修正
1 parent 81d4d63 commit d63ae2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/[docs_id]/markdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import Markdown, { Components } from "react-markdown";
22
import remarkGfm from "remark-gfm";
33
import SyntaxHighlighter from "react-syntax-highlighter";
4-
import { type AceLang, EditorComponent, getAceLang } from "../terminal/editor";
4+
import { EditorComponent, getAceLang } from "../terminal/editor";
55
import { ExecFile } from "../terminal/exec";
66
import { useChangeTheme } from "./themeToggle";
77
import {
88
tomorrow,
99
atomOneDark,
1010
} from "react-syntax-highlighter/dist/esm/styles/hljs";
1111
import { ReactNode } from "react";
12-
import { getRuntimeLang, RuntimeLang } from "@/terminal/runtime";
12+
import { getRuntimeLang } from "@/terminal/runtime";
1313
import { ReplTerminal } from "@/terminal/repl";
1414

1515
export function StyledMarkdown({ content }: { content: string }) {

app/[docs_id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MarkdownSection, splitMarkdown } from "./splitMarkdown";
66
import pyodideLock from "pyodide/pyodide-lock.json";
77
import { PageContent } from "./pageContent";
88
import { ChatHistoryProvider } from "./chatHistory";
9-
import { getChat, getChatFromCache } from "@/lib/chatHistory";
9+
import { getChatFromCache } from "@/lib/chatHistory";
1010

1111
export default async function Page({
1212
params,

0 commit comments

Comments
 (0)