From 9aedac7046401d92d88a611c17f63a265265f822 Mon Sep 17 00:00:00 2001 From: ChinoUkaegbu <77782533+ChinoUkaegbu@users.noreply.github.com> Date: Sun, 15 Sep 2024 20:01:00 +0100 Subject: [PATCH] typo: update error link in App.ts --- src/App.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.ts b/src/App.ts index 2f9f98d7d..056e9e776 100644 --- a/src/App.ts +++ b/src/App.ts @@ -1303,7 +1303,7 @@ export default class App if (authorize === undefined && !usingOauth) { throw new AppInitializationError( - `${tokenUsage} \n\nSince you have not provided a token or authorize, you might be missing one or more required oauth installer options. See https://slack.dev/bolt-js/concepts#authenticating-oauth for these required fields.\n`, + `${tokenUsage} \n\nSince you have not provided a token or authorize, you might be missing one or more required oauth installer options. See https://slack.dev/bolt-js/concepts/authenticating-oauth for these required fields.\n`, ); } else if (authorize !== undefined && usingOauth) { throw new AppInitializationError(`You cannot provide both authorize and oauth installer options. ${tokenUsage}`);