mirror of
https://github.com/usememos/memos.git
synced 2024-12-27 23:51:57 +08:00
chore: fix linter
This commit is contained in:
parent
2d34615eac
commit
089cd3de87
1 changed files with 3 additions and 1 deletions
|
@ -12,9 +12,11 @@ const inlineRenderer = (rawStr: string) => {
|
|||
} else if (matchResult[2]) {
|
||||
latexCode = matchResult[2];
|
||||
}
|
||||
return <div className="max-w-full overflow-x-auto">
|
||||
return (
|
||||
<div className="max-w-full overflow-x-auto">
|
||||
<TeX key={latexCode}>{latexCode}</TeX>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return rawStr;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue