Skip to content

Commit c4838d0

Browse files
committed
prettier
1 parent 6d92353 commit c4838d0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/useDigitalWallet.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export default function useDigitalWallet(cardId: string) {
4444
const [card, setCard] = useState<StripeCard | null>(null);
4545
const [isPaired, setIsPaired] = useState(false);
4646

47-
4847
useEffect(() => {
4948
getIsPaired().then((isPaired) => {
5049
setIsPaired(isPaired);
@@ -95,7 +94,7 @@ export default function useDigitalWallet(cardId: string) {
9594
primaryAccountIdentifier:
9695
cardData?.wallets?.primary_account_identifier ?? null,
9796
cardLastFour: cardData.last4,
98-
hasPairedAppleWatch: isPaired || false,
97+
hasPairedAppleWatch: isPaired || false,
9998
});
10099

101100
if (walletError) {

0 commit comments

Comments
 (0)