Skip to content

Commit

Permalink
chore: adjust display
Browse files Browse the repository at this point in the history
  • Loading branch information
slient-coder committed Jun 30, 2023
1 parent 00625f3 commit 0c0404b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/ui/pages/Wallet/SplitTxCreateScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,14 @@ export default function SplitTxCreateScreen() {
<Content>
<Text
color="red"
textCenter
text={
'This feature is currently under experimentation. Please verify splited inscriptions when signing the transaction.'
'This feature is currently under experimentation. Please confirm the splited inscriptions when signing the transaction.'
}
/>
<Column>
<Text text="Inscriptions" color="textDim" />
<Row justifyBetween>
<Text text="Inscriptions" color="textDim" />
<Row overflowX gap="lg" pb="md">
{inscriptions.map((v) => (
<InscriptionPreview key={v.inscriptionId} data={v} preset="small" />
Expand Down
5 changes: 4 additions & 1 deletion src/ui/state/transactions/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ export function useCreateSplitTxCallback() {
);
const rawTxInfo: RawTxInfo = {
psbtHex,
rawtx
rawtx,
toAddressInfo: {
address: fromAddress
}
};
return rawTxInfo;
},
Expand Down

0 comments on commit 0c0404b

Please sign in to comment.