From 6da7a646a7abd2ffccb2bd406ea2f72005bf6c0f Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Sat, 24 Jan 2026 08:37:29 +0100 Subject: [PATCH 1/2] docs: handleRedirectCallback requires method Signed-off-by: David Dal Busco --- docs/build/authentication/google.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/authentication/google.md b/docs/build/authentication/google.md index 0fc861e6..ab2c4733 100644 --- a/docs/build/authentication/google.md +++ b/docs/build/authentication/google.md @@ -201,7 +201,7 @@ After authentication, Google redirects the user back to your app with a signed t ```typescript import { handleRedirectCallback } from "@junobuild/core"; -await handleRedirectCallback(); +await handleRedirectCallback({ google: null }); ``` If the callback is successful, the user is signed in and a session is created. From a22d607425c1cf1b7c2ee9cfe12b1a4c70e962a4 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 07:39:14 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=84=20Update=20LLMs.txt=20snapshot?= =?UTF-8?q?=20for=20PR=20review?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .llms-snapshots/llms-full.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.llms-snapshots/llms-full.txt b/.llms-snapshots/llms-full.txt index 6df7074e..60f3b619 100644 --- a/.llms-snapshots/llms-full.txt +++ b/.llms-snapshots/llms-full.txt @@ -914,7 +914,7 @@ import { signIn } from "@junobuild/core";await signIn({ google: { redirect: After authentication, Google redirects the user back to your app with a signed token. You must handle that redirect on the route that matches your configured `redirectUrl`. For example, `/auth/callback/google`. ``` -import { handleRedirectCallback } from "@junobuild/core";await handleRedirectCallback(); +import { handleRedirectCallback } from "@junobuild/core";await handleRedirectCallback({ google: null }); ``` If the callback is successful, the user is signed in and a session is created.