refactor: simplify FPS preset labels in timeline constants

This commit is contained in:
Maze Winther 2025-07-21 22:50:59 +02:00
parent cf8c401a2a
commit c06ff9249d
1 changed files with 5 additions and 5 deletions

View File

@ -80,11 +80,11 @@ export const TIMELINE_CONSTANTS = {
// FPS presets for project settings
export const FPS_PRESETS = [
{ value: "24", label: "24 fps (Film)" },
{ value: "25", label: "25 fps (PAL)" },
{ value: "30", label: "30 fps (NTSC)" },
{ value: "60", label: "60 fps (High)" },
{ value: "120", label: "120 fps (Slow-mo)" },
{ value: "24", label: "24 fps" },
{ value: "25", label: "25 fps" },
{ value: "30", label: "30 fps" },
{ value: "60", label: "60 fps" },
{ value: "120", label: "120 fps" },
] as const;
// Frame snapping utilities