fix build

This commit is contained in:
Athou
2024-02-03 11:44:58 +01:00
parent 3026fd116c
commit 3c116dbabe
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import { type ReactNode } from "react"
interface CodeEditorProps {
description?: ReactNode
language: "css" | "javascript"
value: string
value?: string
onChange: (value: string | undefined) => void
}

View File

@@ -27,7 +27,7 @@ const init = async () => {
interface RichCodeEditorProps {
height: number | string
language: "css" | "javascript"
value: string
value?: string
onChange: (value: string | undefined) => void
}