Skip to content

Commit

Permalink
Fix prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
yoosaemsol committed Jun 29, 2021
1 parent d8e4069 commit 54e8cb3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
npm start
npm run start-production
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"react-icons": "^4.1.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"react-scripts": "^4.0.3",
"react-simple-code-editor": "^0.11.0",
"react-toggle": "^4.1.2",
"react-use-localstorage": "^3.5.3",
Expand All @@ -37,6 +37,7 @@
},
"scripts": {
"start": "react-scripts start",
"start-production": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
4 changes: 3 additions & 1 deletion src/components/MyBucket/components/Permission.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const Permission = () => {
const [userArr, setUserArr] = useState();
const [alertModal, setAlertModal] = useState(false);
const [isAdminAddModalActive, setIsAdminAddModalActive] = useState(false);
const [isAdminDeleteModalActive, setIsAdminDeleteModalActive] = useState(false);
const [isAdminDeleteModalActive, setIsAdminDeleteModalActive] = useState(
false
);
const [selectedAdmin, setSelectedAdmiin] = useState();
const token = sessionStorage.getItem("access_token");
const changeTheme = useSelector((store) => store.darkThemeReducer);
Expand Down

0 comments on commit 54e8cb3

Please sign in to comment.