Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
polarker committed Aug 28, 2023
1 parent d7baf7f commit 7c452d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function AppHeader() {
<Menu.Target>
<Button
size="md"
w="5.5rem"
w="5.25rem"
tt="capitalize"
radius={'md'}
compact
Expand Down
2 changes: 1 addition & 1 deletion src/components/Misc/WIP.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createStyles, Title, Container, rem, Box } from '@mantine/core'

const useStyles = createStyles((theme) => ({
root: {
paddingTop: "5rem",
paddingTop: '5rem',
paddingBottom: rem(120),
backgroundColor: theme.fn.variant({
variant: 'filled',
Expand Down
6 changes: 3 additions & 3 deletions src/components/Multisig/BuildMultisigTx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,12 @@ function BuildMultisigTx() {
label="Recipient"
ta="left"
placeholder="Address"
icon={<IconAt size={"1.25rem"}/>}
icon={<IconAt size={'1.25rem'} />}
{...form.getInputProps('destinations.0.address')}
w="28rem"
/>
<NumberInput
label={`Max: ${showBalance(balance)}`}
label={`Balance: ${showBalance(balance)}`}
ta="left"
precision={6}
placeholder="Amount"
Expand Down Expand Up @@ -339,7 +339,7 @@ function BuildMultisigTx() {
</Anchor>
</Input.Description>
<Space h="lg" />
<CopyTextarea value={btoa(form.values.unsignedTx ?? '')} />
<CopyTextarea value={form.values.unsignedTx ?? ''} />
<Group mt="xl" position="apart" mx="lg">
<Button
onClick={() => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Multisig/SignMultisigTx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ function SignMultisigTx() {
if (e.target.value === '') {
setUnsignedTx(undefined)
} else {
setUnsignedTx(atob(e.target.value))
tryLoadMultisigTxInfo(atob(e.target.value))
setUnsignedTx(e.target.value)
tryLoadMultisigTxInfo(e.target.value)
}
}}
styles={{
Expand Down

0 comments on commit 7c452d7

Please sign in to comment.