Merge pull request #614 from creazyfrog/feature/rename-native-to-original

ux: rename 'Native' aspect ratio label to 'Original'
This commit is contained in:
Sid
2026-05-20 21:06:36 -07:00
committed by GitHub
+1 -1
View File
@@ -79,7 +79,7 @@ export function getAspectRatioDimensions(
}
export function getAspectRatioLabel(aspectRatio: AspectRatio): string {
if (aspectRatio === "native") return "Native";
if (aspectRatio === "native") return "Original";
return aspectRatio;
}