From b347dfbedd4d039af464bca77fffed8a1e84cf91 Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Tue, 21 Oct 2025 01:23:10 -0700 Subject: [PATCH] chore: fix typo (#5450) --- packages/core/src/context/endpoint-context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/context/endpoint-context.ts b/packages/core/src/context/endpoint-context.ts index 417a0bed98..a561b914f3 100644 --- a/packages/core/src/context/endpoint-context.ts +++ b/packages/core/src/context/endpoint-context.ts @@ -33,7 +33,7 @@ export async function getCurrentAuthContext(): Promise { const context = als.getStore(); if (!context) { throw new Error( - "No auth context found. Please make sure you are calling this function within a `getCurrentAuthContext` callback.", + "No auth context found. Please make sure you are calling this function within a `runWithEndpointContext` callback.", ); } return context;