Răsfoiți Sursa

removed unnecessary diff

Steven Fukase 4 ani în urmă
părinte
comite
21d71fb2cf
1 a modificat fișierele cu 5 adăugiri și 3 ștergeri
  1. 5 3
      packages/app/src/components/Me/EditorSettings.tsx

+ 5 - 3
packages/app/src/components/Me/EditorSettings.tsx

@@ -4,9 +4,14 @@ import React, {
 import { useTranslation } from 'react-i18next';
 import PropTypes from 'prop-types';
 import AppContainer from '~/client/services/AppContainer';
+
 import { withUnstatedContainers } from '../UnstatedUtils';
+
 import { toastSuccess, toastError } from '~/client/util/apiNotification';
 
+type Props = {
+  appContainer: AppContainer,
+}
 
 const commonRulesMenuItems = [
   {
@@ -85,9 +90,6 @@ type LintRules = {
   isEnabled?: boolean;
 }
 
-type Props = {
-  appContainer: AppContainer,
-}
 
 const EditorSettingsBody: FC<Props> = (props) => {
   const { t } = useTranslation();