Pārlūkot izejas kodu

remvoe memo for setting components

reiji-h 1 gadu atpakaļ
vecāks
revīzija
889b85810f

+ 2 - 2
apps/app/src/client/components/ReactMarkdownComponents/TableWithEditButton.tsx

@@ -22,7 +22,7 @@ type TableWithEditButtonProps = {
   className?: string
   className?: string
 }
 }
 
 
-export const TableWithEditButton = React.memo((props: TableWithEditButtonProps): JSX.Element => {
+export const TableWithEditButton = (props: TableWithEditButtonProps): JSX.Element => {
 
 
   const { children, node, className } = props;
   const { children, node, className } = props;
 
 
@@ -53,5 +53,5 @@ export const TableWithEditButton = React.memo((props: TableWithEditButtonProps):
       </table>
       </table>
     </div>
     </div>
   );
   );
-});
+};
 TableWithEditButton.displayName = 'TableWithEditButton';
 TableWithEditButton.displayName = 'TableWithEditButton';