File tree 3 files changed +6
-9
lines changed
screens/AcademicExcellence
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,11 @@ const Navbar = () => {
70
70
</ p >
71
71
</ section >
72
72
< section className = "flex flex-row items-center gap-2 md:mr-6" >
73
- < button
74
- className = "flex flex-row items-center border-[2px] border-black text-black hover:text-white hover:bg-black px-4 py-1 rounded-[10px]"
75
- onClick = { openTemplateModal }
76
- >
77
- < GoDownload className = "text-[26px] mr-1" />
78
- < p className = "text-[14px] font-bold" > Template</ p >
79
- </ button >
73
+ { userStatus && (
74
+ < p className = "md:flex hidden" >
75
+ Hello! { userData . decodedToken . first_name }
76
+ </ p >
77
+ ) }
80
78
{ userStatus ? (
81
79
< >
82
80
< PiUserCircleFill
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
- import { createRoot } from "react-dom" ;
2
+ import { createRoot } from "react-dom/client " ;
3
3
import App from "./App.jsx" ;
4
4
import "./index.css" ;
5
5
import { Provider } from "react-redux" ;
Original file line number Diff line number Diff line change @@ -178,7 +178,6 @@ const Option1 = () => {
178
178
< button
179
179
className = "bg-[#923DFF] p-1 rounded-sm cursor-pointer mr-1.5"
180
180
onClick = { ( ) => {
181
- console . log ( params . row ) ;
182
181
openUpdateAwardeeModalHandler ( params . row ) ;
183
182
} }
184
183
>
You can’t perform that action at this time.
0 commit comments