Skip to content

Commit 6f9ea86

Browse files
fix(rtl): add static dir to CodeBox (#6668)
1 parent 0bdaa81 commit 6f9ea86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Common/CodeBox/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const CodeBox: FC<PropsWithChildren<CodeBoxProps>> = ({
9494

9595
return (
9696
<div className={styles.root}>
97-
<pre ref={ref} className={styles.content} tabIndex={0}>
97+
<pre ref={ref} className={styles.content} tabIndex={0} dir="ltr">
9898
{transformCode(children, language)}
9999
</pre>
100100

0 commit comments

Comments
 (0)