Procházet zdrojové kódy

fix: notion binding (#2572)

zxhlyh před 1 rokem
rodič
revize
0c0e96c55f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      web/hooks/use-pay.tsx

+ 1 - 1
web/hooks/use-pay.tsx

@@ -122,7 +122,7 @@ export const useCheckNotion = () => {
   const notionCode = searchParams.get('code')
   const notionError = searchParams.get('error')
   const { data } = useSWR(
-    canBinding
+    (canBinding && notionCode)
       ? `/oauth/data-source/binding/notion?code=${notionCode}`
       : null,
     fetchDataSourceNotionBinding,