diff --git a/.prettierrc.js b/.prettierrc.js
index 877e0ad..5e4ed56 100755
--- a/.prettierrc.js
+++ b/.prettierrc.js
@@ -2,4 +2,6 @@ module.exports = {
printWidth: 100,
tabWidth: 2,
singleQuote: true,
+ arrowParens: 'avoid',
+ trailingComma: 'none'
};
diff --git a/package-lock.json b/package-lock.json
index 6418f81..08e4a97 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,11 +1,11 @@
{
- "name": "rsuite-admin-template",
+ "name": "stats-calculator",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "rsuite-admin-template",
+ "name": "stats-calculator",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
diff --git a/src/App.tsx b/src/App.tsx
index 2503557..3261fa3 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -2,7 +2,7 @@ import React from 'react';
import { Routes, Route, Navigate } from 'react-router-dom';
import { IntlProvider } from 'react-intl';
import { CustomProvider } from 'rsuite';
-import enUS from 'rsuite/locales/en_GB';
+import enUS from 'rsuite/locales/en_US';
import locales from './locales';
import Frame from './components/Frame';
import HistogramPage from './pages/histogram';
diff --git a/src/index.tsx b/src/index.tsx
index 78aa714..96464fe 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -2,14 +2,14 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import { BrowserRouter } from 'react-router-dom';
import App from './App';
-
import './styles/index.less';
-// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const root = ReactDOM.createRoot(document.getElementById('root')!);
root.render(
-
-
-
+
+
+
+
+
);