Skip to content

Commit

Permalink
update import
Browse files Browse the repository at this point in the history
  • Loading branch information
m-aboelenein committed Oct 28, 2024
1 parent 1011b29 commit bf3e306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions example/src/components/EtchRunes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ export const EtchRunes = ({ addresses, network }: Props) => {
terms:
amount || mintCap
? {
amount: amount || undefined,
cap: mintCap || undefined,
amount: amount || '',
cap: mintCap || '',
}
: undefined,
feeRate: +feeRate,
Expand Down
4 changes: 2 additions & 2 deletions example/src/components/GetRunesBalance/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useCallback, useState } from 'react';
import Wallet, { GetRunesBalanceResult } from 'sats-connect';
import Wallet, { RunesGetBalanceResult } from 'sats-connect';
import { Button, Card } from '../../App.styles';

export const GetRunesBalance = () => {
const [balances, setBalances] = useState<GetRunesBalanceResult['balances']>([]);
const [balances, setBalances] = useState<RunesGetBalanceResult['balances']>([]);

const getBalance = useCallback(() => {
(async () => {
Expand Down

0 comments on commit bf3e306

Please sign in to comment.