Remove leftover log

This commit is contained in:
Nate Butler 2023-03-03 10:22:50 -08:00
parent 3b6f66791f
commit 75a9cfdabe

View File

@ -120,7 +120,7 @@ export interface Syntax {
// HACK: "constructor" as a key in the syntax interface returns an error when a theme tries to use it.
// For now hack around it by omiting constructor as a valid key for overrides.
export type ThemeSyntax = Partial<Omit<Syntax, "constructor">>
export type ThemeSyntax = Partial<Syntax>
const defaultSyntaxHighlightStyle: Omit<SyntaxHighlightStyle, "color"> = {
weight: fontWeights.normal,
@ -312,8 +312,6 @@ function buildDefaultSyntax(colorScheme: ColorScheme): Syntax {
},
}
console.log(JSON.stringify(defaultSyntax, null, 2))
return defaultSyntax
}