Skip to content

Commit

Permalink
fix: ord transfer bug
Browse files Browse the repository at this point in the history
  • Loading branch information
danwag06 committed Dec 10, 2024
1 parent 7555b4a commit 23784a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/OrdWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const OrdWallet = () => {
const [from, setFrom] = useState<string>();
const listedOrdinals = ordinals && ordinals.filter((o) => o?.data?.list);
const myOrdinals = ordinals && ordinals.filter((o) => !o?.data?.list);
const [useSameAddress, setUseSameAddress] = useState(true);
const [useSameAddress, setUseSameAddress] = useState(false);
const [addresses, setAddresses] = useState<Addresses>({});
const [addressErrors, setAddressErrors] = useState<Addresses>({});
const [commonAddress, setCommonAddress] = useState('');
Expand Down

0 comments on commit 23784a6

Please sign in to comment.