Skip to content

Commit bb7d5fb

Browse files
authored
[Fix] typo (#476)
1 parent 7102479 commit bb7d5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc_builder/commands/notebook_to_mdx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def notebook_to_mdx_command(args):
6969
if src_path.is_dir() and args.open_notebook_prefix is not None:
7070
relative_path = notebook_path.relative_to(src_path)
7171
colab_link = f"{args.open_notebook_prefix}/{str(relative_path)}"
72-
colab_link_component = f'<DocNotebookDropdown classNames="absolute z-10 right-0 top-0" options={{[{{label: "Google Colab", value: "{colab_link}"}}]}} />/>'
72+
colab_link_component = f'<DocNotebookDropdown classNames="absolute z-10 right-0 top-0" options={{[{{label: "Google Colab", value: "{colab_link}"}}]}} />'
7373
mdx_content = f"{colab_link_component}\n\n" + mdx_content
7474

7575
with open(dest_file_path, "w", encoding="utf-8") as f:

0 commit comments

Comments
 (0)