From 93eebb62c9e0d67b4d222e42812314bf2a05b876 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Tue, 11 Mar 2025 23:17:56 -0500 Subject: [PATCH] Capitalize N/A for noise reduction --- src/recipe/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recipe/index.ts b/src/recipe/index.ts index 6f435f35..c6551bb7 100644 --- a/src/recipe/index.ts +++ b/src/recipe/index.ts @@ -159,4 +159,4 @@ export const formatNoiseReduction = ({ }: FujifilmRecipe) => highISONoiseReduction ? addSign(highISONoiseReduction) - : noiseReductionBasic ?? 'OFF'; + : noiseReductionBasic?.toLocaleUpperCase() ?? 'OFF';