From b110704c41caeb2b73714e7f417177d8455c515a Mon Sep 17 00:00:00 2001 From: Elijah Date: Tue, 1 Oct 2024 16:27:08 +0000 Subject: [PATCH] fix components paths --- reflex/components/datadisplay/shiki_code_block.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/components/datadisplay/shiki_code_block.py b/reflex/components/datadisplay/shiki_code_block.py index 56f8a485c..f71137d9b 100644 --- a/reflex/components/datadisplay/shiki_code_block.py +++ b/reflex/components/datadisplay/shiki_code_block.py @@ -350,11 +350,11 @@ class ShikiJsTransformer(ShikiBaseTransformers): class ShikiCodeBlock(Component): - library = "/utils/code" + library = "/components/shiki/code" tag = "Code" alias = "ShikiCode" language: Var[LiteralCodeLanguage] = Var.create("python") - theme: Var[LiteralCodeTheme] = Var.create("github-dark") + theme: Var[LiteralCodeTheme] = Var.create("one-light") themes: Var[list[dict[str, Any]] | dict[str, str]] code: Var[str] transformers: Var[list[ShikiBaseTransformers | dict[str, Any]]] = []