From c60ad1e4da65d08a846f58eb634f14d5128c6c7f Mon Sep 17 00:00:00 2001 From: Joshua Shoemaker Date: Tue, 28 Mar 2023 12:16:19 -0500 Subject: [PATCH] style: use RTL attribute instead of css --- frontend/useCases/createDiffEditorInteractions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/useCases/createDiffEditorInteractions.ts b/frontend/useCases/createDiffEditorInteractions.ts index a09a9ef..f843b5f 100644 --- a/frontend/useCases/createDiffEditorInteractions.ts +++ b/frontend/useCases/createDiffEditorInteractions.ts @@ -26,7 +26,7 @@ const htmlWrappers = [ const getHtmlWrappedText = (text: string, htmlWrapper: (typeof htmlWrappers)[number]) => { if (htmlWrapper === MarkdownOperator.RIGHTALIGN) { - return `\n\n${text}\n\n\n` + return `\n\n${text}\n\n\n` } }