Skip to content

Update oauth.tsx #279

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/oauth.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useCallback, useState } from 'react';
import React, { useCallback, useState, useEffect } from 'react';

import {
usePlaidLink,
Expand All @@ -13,7 +13,7 @@ const PlaidLinkWithOAuth = () => {
const isOAuthRedirect = window.location.href.includes('?oauth_state_id=');

// generate a link_token when component mounts
React.useEffect(() => {
useEffect(() => {
// do not generate a new token if page is handling an OAuth redirect.
// instead setLinkToken to previously generated token from localStorage
// https://plaid.com/docs/link/oauth/#reinitializing-link
Expand Down Expand Up @@ -68,7 +68,7 @@ const PlaidLinkWithOAuth = () => {
// exit
} = usePlaidLink(config);

React.useEffect(() => {
useEffect(() => {
// If OAuth redirect, instantly open link when it is ready instead of
// making user click the button
if (isOAuthRedirect && ready) {
Expand Down