From 995bc86f0b6b16f374a68ca2f3d2d09408bf8f22 Mon Sep 17 00:00:00 2001
From: Luis Felipe Risch <lfr20@inf.ufpr.br>
Date: Sat, 13 Feb 2021 11:39:38 -0300
Subject: [PATCH] add corrected identation

---
 src/Components/UserPageComponents/UserInfo.js | 33 ++++++++++++-------
 1 file changed, 21 insertions(+), 12 deletions(-)

diff --git a/src/Components/UserPageComponents/UserInfo.js b/src/Components/UserPageComponents/UserInfo.js
index 8c776a95..32985ffb 100644
--- a/src/Components/UserPageComponents/UserInfo.js
+++ b/src/Components/UserPageComponents/UserInfo.js
@@ -15,22 +15,31 @@ GNU Affero General Public License for more details.
 
 You should have received a copy of the GNU Affero General Public License
 along with Plataforma Integrada MEC.  If not, see <http://www.gnu.org/licenses/>.*/
-import React, {useContext} from 'react';
-import { Store } from '../../Store.js';
-import {UserProfileInfoDiv} from '../TabPanels/StyledComponents.js'
+import React, { useContext } from "react";
+import { Store } from "../../Store.js";
+import { UserProfileInfoDiv } from "../TabPanels/StyledComponents.js";
 
-export default function UserInfo (props) {
-    const {state} = useContext(Store)
+export default function UserInfo(props) {
+    const { state } = useContext(Store);
 
-    const user = state.currentUser.name
-    const education = state.currentUser.education
+    const user = state.currentUser.name;
+    const education = state.currentUser.education;
 
     return (
         <UserProfileInfoDiv>
-            <p style={{fontSize:"28px", color:"#fff", paddingTop:"5px", paddingBottom:"5px", fontWeight:"500", backgroundColor:"#77777796", borderRadius : "5px"}}>{user}</p>
-            <div style={{fontSize:"14px", color:"#fff", marginBottom:"2px"}}>
-                <p>{education}</p>
-            </div>
+            <p
+                style={{
+                    fontSize: "28px",
+                    color: "#fff",
+                    paddingTop: "5px",
+                    paddingBottom: "5px",
+                    fontWeight: "500",
+                    backgroundColor: "#77777796",
+                    borderRadius: "5px",
+                }}
+            >
+                {user}
+            </p>
         </UserProfileInfoDiv>
-    )
+    );
 }
-- 
GitLab