We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d92353 commit c4838d0Copy full SHA for c4838d0
src/lib/useDigitalWallet.ts
@@ -44,7 +44,6 @@ export default function useDigitalWallet(cardId: string) {
44
const [card, setCard] = useState<StripeCard | null>(null);
45
const [isPaired, setIsPaired] = useState(false);
46
47
-
48
useEffect(() => {
49
getIsPaired().then((isPaired) => {
50
setIsPaired(isPaired);
@@ -95,7 +94,7 @@ export default function useDigitalWallet(cardId: string) {
95
94
primaryAccountIdentifier:
96
cardData?.wallets?.primary_account_identifier ?? null,
97
cardLastFour: cardData.last4,
98
- hasPairedAppleWatch: isPaired || false,
+ hasPairedAppleWatch: isPaired || false,
99
});
100
101
if (walletError) {
0 commit comments