File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -93,12 +93,8 @@ export default function Page() {
93
93
}
94
94
} , [ status ] ) ; // eslint-disable-line react-hooks/exhaustive-deps
95
95
96
- const handleVerify = token => {
97
- if ( ! token ) {
98
- return ;
99
- }
100
-
101
- setDisabled ( false ) ;
96
+ const handleVerify = verified => {
97
+ setDisabled ( ! verified ) ;
102
98
} ;
103
99
104
100
return (
@@ -108,7 +104,7 @@ export default function Page() {
108
104
< div className = "absolute top-1/2 left-0 w-full border-b-2 border-dashed border-[#d1d9e0]" />
109
105
< div className = "flex items-center justify-between py-9" >
110
106
< div className = "relative bg-white rounded-full size-[60px] md:size-[100px]" >
111
- < Image src = { clientInfo ?. icon } alt = "Logo" className = "!size-full" fill />
107
+ < Image src = { clientInfo ?. icon } alt = "Logo" fill />
112
108
</ div >
113
109
< div className = "flex items-center gap-2 relative" >
114
110
< SvgIcon name = "circle-check" size = { 20 } />
You can’t perform that action at this time.
0 commit comments