Skip to content

Commit

Permalink
make unsigned transaction default start (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
danield9tqh authored Oct 16, 2024
1 parent 7390e78 commit 350a70b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export function AggregateSignatureShares({
} else if (isSuccess) {
return (
<Box>
Transaction submitted successfully!
<PillButton
mt={8}
height="60px"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,19 +198,19 @@ export function GetUnsignedTransaction({
>
<Tabs isLazy>
<TabList mt={3} mb={8}>
<Tab>{"Create Transaction"}</Tab>
<Tab>{"Enter Unsigned Transaction"}</Tab>
<Tab>{"Create Transfer Transaction"}</Tab>
</TabList>
<TabPanels>
<TabPanel p={0}>
<CreateUnsignedTransactionForm
<InputUnsignedTransaction
onSubmit={(unsignedTransaction, selectedAccount) => {
onSubmit({ unsignedTransaction, selectedAccount });
}}
/>
</TabPanel>
<TabPanel p={0}>
<InputUnsignedTransaction
<CreateUnsignedTransactionForm
onSubmit={(unsignedTransaction, selectedAccount) => {
onSubmit({ unsignedTransaction, selectedAccount });
}}
Expand Down

0 comments on commit 350a70b

Please sign in to comment.