File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export const SettingsMain = (): JSX.Element => {
49
49
value : ! settings . advancedMode ,
50
50
} ) ;
51
51
} }
52
- label = "PRO mode"
52
+ label = "DEV mode"
53
53
checked = { settings . advancedMode }
54
54
activeColor = "yellow"
55
55
color = "white"
@@ -60,7 +60,7 @@ export const SettingsMain = (): JSX.Element => {
60
60
icon = { < FaInfo /> }
61
61
text = {
62
62
< >
63
- PRO mode unlocks more technically advanced features in
63
+ DEV mode unlocks more technically advanced features in
64
64
Namadillo that replicates the UX of the CLI. You can learn
65
65
more about these features{ " " }
66
66
< a
Original file line number Diff line number Diff line change 1
- import { CopyToClipboardControl } from "@namada/components" ;
1
+ import { CopyToClipboardControl , Tooltip } from "@namada/components" ;
2
2
import { TransactionHistory as TransactionHistoryType } from "@namada/indexer-client" ;
3
3
import { shortenAddress } from "@namada/utils" ;
4
4
import { TokenCurrency } from "App/Common/TokenCurrency" ;
@@ -213,10 +213,15 @@ export const TransactionCard = ({
213
213
) }
214
214
>
215
215
{ getTitle ( transaction ?. kind , isReceived ) } { " " }
216
- < CopyToClipboardControl
217
- className = "ml-1.5 text-neutral-400"
218
- value = { transaction ?. txId ?? "" }
219
- />
216
+ < div className = "relative group/tooltip" >
217
+ < CopyToClipboardControl
218
+ className = "ml-1.5 text-neutral-400"
219
+ value = { transaction ?. txId ?? "" }
220
+ />
221
+ < Tooltip position = "right" className = "p-2 -mr-3 w-[150px]" >
222
+ Copy transaction hash
223
+ </ Tooltip >
224
+ </ div >
220
225
</ h3 >
221
226
< h3 className = "text-neutral-400" >
222
227
{ timestamp ?
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ export const TransferDestination = ({
128
128
) }
129
129
</ div >
130
130
) }
131
+
131
132
{ customAddressActive && (
132
133
< Stack gap = { 8 } >
133
134
{ onToggleCustomAddress && (
@@ -158,13 +159,13 @@ export const TransferDestination = ({
158
159
{ isSubmitting && (
159
160
< footer >
160
161
< hr className = "mt-4 mb-2.5 mx-2 border-white opacity-[5%]" />
161
- < div className = "flex justify-between items-center" >
162
+ < div className = "flex justify-between items-center gap-4 " >
162
163
< SelectedChain chain = { chain } wallet = { wallet } iconSize = "36px" />
163
164
{ wallet && walletAddress && (
164
165
< SelectedWallet
165
166
wallet = { wallet }
166
167
address = { customAddressActive ? address : walletAddress }
167
- displayFullAddress = { true }
168
+ displayFullAddress = { false }
168
169
/>
169
170
) }
170
171
</ div >
You can’t perform that action at this time.
0 commit comments