From 412e89b69048e80e7eefacfc8265a626417e576b Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Tue, 24 Jun 2025 19:59:30 +0000 Subject: [PATCH] fix: typo/grammar mistake in includeExternalUrls config option --- src/utils/__snapshots__/manifest.test.ts.snap | 8 ++++---- src/utils/manifest.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils/__snapshots__/manifest.test.ts.snap b/src/utils/__snapshots__/manifest.test.ts.snap index 5aba05f..8bb4ece 100644 --- a/src/utils/__snapshots__/manifest.test.ts.snap +++ b/src/utils/__snapshots__/manifest.test.ts.snap @@ -5,7 +5,7 @@ exports[`buildManifest has checked includeExternalUrls 1`] = ` { "default": "checked", "key": "includeExternalUrls", - "title": "Include external URLs from results", + "title": "Include external URLs in results", "type": "checkbox", }, { @@ -44,7 +44,7 @@ exports[`buildManifest has checked source with appropriate config 1`] = ` { "default": "checked", "key": "includeExternalUrls", - "title": "Include external URLs from results", + "title": "Include external URLs in results", "type": "checkbox", }, { @@ -81,7 +81,7 @@ exports[`buildManifest has unchecked source without a config 1`] = ` }, { "key": "includeExternalUrls", - "title": "Include external URLs from results", + "title": "Include external URLs in results", "type": "checkbox", }, { @@ -103,7 +103,7 @@ exports[`buildManifest includeExternalUrls is unchecked by default 1`] = ` [ { "key": "includeExternalUrls", - "title": "Include external URLs from results", + "title": "Include external URLs in results", "type": "checkbox", }, { diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index 04fbf0d..be7aadf 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -53,7 +53,7 @@ export const buildManifest = (sources: Source[], config: Config): ManifestWithCo manifest.config.push({ key: 'includeExternalUrls', type: 'checkbox', - title: 'Include external URLs from results', + title: 'Include external URLs in results', ...('includeExternalUrls' in config && { default: 'checked' }), });