Browse Source

chore: run format

Danny Liu 1 year ago
parent
commit
40c1b49e6d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/utils/index.ts

+ 1 - 1
src/lib/utils/index.ts

@@ -40,7 +40,7 @@ export const sanitizeResponseContent = (content: string) => {
 };
 
 export const revertSanitizedResponseContent = (content: string) => {
-    return content.replaceAll('&lt;', '<');
+	return content.replaceAll('&lt;', '<');
 };
 
 export const capitalizeFirstLetter = (string) => {