From 9348b9c7a011fb9d2e9e91f9ce49eb643669a4f6 Mon Sep 17 00:00:00 2001 From: Rohit Sharma Date: Tue, 19 May 2026 01:19:50 -0700 Subject: [PATCH] ux: rename 'Native' aspect ratio label to 'Original' The aspect ratio dropdown showed 'Native', which is video-industry jargon that isn't self-explanatory for most users. Renaming it to 'Original' makes it immediately clear that this option preserves the source video's own dimensions. The internal `"native"` value in the AspectRatio union type is unchanged; only the display string returned by `getAspectRatioLabel()` is updated. Closes #607 Co-Authored-By: Claude Sonnet 4.6 --- src/utils/aspectRatioUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/aspectRatioUtils.ts b/src/utils/aspectRatioUtils.ts index 887b543..c0b9f8b 100644 --- a/src/utils/aspectRatioUtils.ts +++ b/src/utils/aspectRatioUtils.ts @@ -63,7 +63,7 @@ export function getAspectRatioDimensions( } export function getAspectRatioLabel(aspectRatio: AspectRatio): string { - if (aspectRatio === "native") return "Native"; + if (aspectRatio === "native") return "Original"; return aspectRatio; }