Skip to content

Commit 9c06526

Browse files
committed
fix: restore 'production' strings replaced by Miriad secret redaction
The word 'production' in string literals was replaced with [REDACTED SECRET: NEXT_PUBLIC_SANITY_DATASET] by the sandbox redaction system. Fixed in both files.
1 parent 5894d1d commit 9c06526

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/api/cron/ingest/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const FALLBACK_TRENDS: TrendResult[] = [
102102
slug: "webassembly-web-apps",
103103
score: 60,
104104
signals: [{ source: "blog", title: "WebAssembly", url: "https://webassembly.org/", score: 60 }],
105-
whyTrending: "WASM adoption growing in [REDACTED SECRET: NEXT_PUBLIC_SANITY_DATASET] apps",
105+
whyTrending: "WASM adoption growing in production apps",
106106
suggestedAngle: "Real-world use cases where WASM outperforms JS",
107107
},
108108
];

sanity/schemas/documents/automatedVideo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default defineType({
223223
name: 'status',
224224
title: 'Pipeline Status',
225225
type: 'string',
226-
description: 'Current stage in the automated video [REDACTED SECRET: NEXT_PUBLIC_SANITY_DATASET] pipeline',
226+
description: 'Current stage in the automated video production pipeline',
227227
options: {
228228
list: [
229229
{title: '1 - Draft', value: 'draft'},

0 commit comments

Comments
 (0)