Capitalize N/A for noise reduction

This commit is contained in:
Sam Becker 2025-03-11 23:17:56 -05:00
parent e894e46e41
commit 93eebb62c9

View File

@ -159,4 +159,4 @@ export const formatNoiseReduction = ({
}: FujifilmRecipe) =>
highISONoiseReduction
? addSign(highISONoiseReduction)
: noiseReductionBasic ?? 'OFF';
: noiseReductionBasic?.toLocaleUpperCase() ?? 'OFF';