replace all occurences (#93)
All checks were successful
Lint and Format Check / lint-and-format (pull_request) Successful in 9s

This commit is contained in:
Mylloon 2024-09-17 22:56:33 +02:00
parent 0de9aecb89
commit ca42d8cc65
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -98,7 +98,7 @@ export const cleanCodeBlock = (text: string) => {
); );
// Fix issues // Fix issues
text = text.replace("``", ""); text = text.replaceAll("``", "");
return text; return text;
}; };