File tree 1 file changed +0
-17
lines changed
components/dashboard/src/admin
1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,6 @@ export default function License() {
33
33
// eslint-disable-next-line react-hooks/exhaustive-deps
34
34
} , [ ] ) ;
35
35
36
- const featureList = license ?. enabledFeatures ;
37
- const features = license ?. features ;
38
-
39
36
// if user seats is 0, it means that there is no user limit in the license
40
37
const userLimit = license ?. seats === 0 ? "Unlimited" : license ?. seats ;
41
38
@@ -49,20 +46,6 @@ export default function License() {
49
46
< span >
50
47
{ licenseLevel }
51
48
{ paid }
52
- < div className = "mt-4 font-semibold text-sm" > Available features:</ div >
53
- < div className = "flex flex-col items-start text-sm" >
54
- { features &&
55
- features . map ( ( feat : string ) => (
56
- < span className = "inline-flex space-x-1" >
57
- { featureList ?. includes ( feat ) ? (
58
- < CheckSvg fill = "currentColor" className = "self-center mt-1" />
59
- ) : (
60
- < XSvg fill = "currentColor" className = "self-center h-2 mt-1" />
61
- ) }
62
- < span > { capitalizeInitials ( feat ) } </ span >
63
- </ span >
64
- ) ) }
65
- </ div >
66
49
</ span >
67
50
</ Card >
68
51
< SolidCard className = "w-72 h-64" >
You can’t perform that action at this time.
0 commit comments