chore: remove out of scope formatting changes

This commit is contained in:
Dustin Healy 2025-08-13 20:59:08 -07:00
parent 6605b6c800
commit ae3907d176
40 changed files with 121 additions and 107 deletions

View file

@ -1,7 +1,7 @@
import React from 'react';
import { useMessageProcess } from '~/hooks';
import type { TMessageProps } from '~/common';
// eslint-disable-next-line import/no-cycle
import MultiMessage from '~/components/Chat/Messages/MultiMessage';
import ContentRender from './ContentRender';
@ -64,7 +64,7 @@ export default function MessageContent(props: TMessageProps) {
</div>
</div>
) : (
<div className="m-auto justify-center p-4 py-2 md:gap-6">
<div className="m-auto justify-center p-4 py-2 md:gap-6 ">
<ContentRender {...props} />
</div>
)}