merge dev to main #169

Merged
Anri merged 6 commits from dev into main 2024-09-17 22:57:55 +02:00
Showing only changes of commit ca42d8cc65 - Show all commits

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;
}; };