File tree Expand file tree Collapse file tree 2 files changed +32
-10
lines changed Expand file tree Collapse file tree 2 files changed +32
-10
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,13 @@ const Countdown: React.FC = () => {
54
54
< div className = "px-6" >
55
55
< p
56
56
className = "cursor-default"
57
- title = "Using Client smart contract is available only for new applications. Select Contract as allocation type to start using it"
57
+ title = "Using Client Smart Contract is available only for new applications. Select Contract as allocation type to start using it"
58
58
>
59
59
Direct allocation of DataCap will be deprecated in{ ' ' }
60
60
< span className = "whitespace-nowrap" >
61
61
{ timeLeft . days } d { timeLeft . hours } h { timeLeft . minutes } m
62
62
</ span > { ' ' }
63
- (June 1). Start using the Client smart contract today.
63
+ (June 1). Start using the Client Smart Contract today.
64
64
</ p >
65
65
</ div >
66
66
)
Original file line number Diff line number Diff line change @@ -110,9 +110,11 @@ const DatacapAmountModal = ({
110
110
] . includes ( application ?. Lifecycle ?. State ) && (
111
111
< div className = "flex justify-items-center justify-between content-center items-center w-full" >
112
112
< FormControl >
113
- < FormLabel id = "demo-controlled-radio-buttons-group" >
114
- Allocation type
115
- </ FormLabel >
113
+ < div className = "flex justify-between items-center" >
114
+ < FormLabel id = "demo-controlled-radio-buttons-group" >
115
+ Allocation type
116
+ </ FormLabel >
117
+ </ div >
116
118
< RadioGroup
117
119
aria-labelledby = "demo-controlled-radio-buttons-group"
118
120
value = { allocationConfig . allocationType }
@@ -124,11 +126,31 @@ const DatacapAmountModal = ({
124
126
} )
125
127
} }
126
128
>
127
- < FormControlLabel
128
- value = { 'contract' }
129
- control = { < Radio /> }
130
- label = { 'Contract' }
131
- />
129
+ < div className = "flex items-center justify-between" >
130
+ < FormControlLabel
131
+ value = { 'contract' }
132
+ control = { < Radio /> }
133
+ label = { 'Contract' }
134
+ />
135
+ < div className = "flex gap-4" >
136
+ < a
137
+ href = "https://www.fidl.tech/news/improvements-to-datacap-management"
138
+ target = "_blank"
139
+ rel = "noopener noreferrer"
140
+ className = "text-blue-500 hover:underline"
141
+ >
142
+ About
143
+ </ a >
144
+ < a
145
+ href = "https://github.com/fidlabs/contract-metaallocator/blob/main/HowToUseClientSmartContract.md"
146
+ target = "_blank"
147
+ rel = "noopener noreferrer"
148
+ className = "text-blue-500 hover:underline"
149
+ >
150
+ How To Use
151
+ </ a >
152
+ </ div >
153
+ </ div >
132
154
< FormControlLabel
133
155
value = "directly"
134
156
control = { < Radio /> }
You can’t perform that action at this time.
0 commit comments