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' }), });