From d623ba6b4b6c5b5f748ca49bda2b6837fc837d66 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Tue, 1 Jul 2025 16:02:32 +0200 Subject: [PATCH] refactor: simplify canvas preset names for clarity --- apps/web/src/stores/editor-store.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/src/stores/editor-store.ts b/apps/web/src/stores/editor-store.ts index 6843dec..5382c3e 100644 --- a/apps/web/src/stores/editor-store.ts +++ b/apps/web/src/stores/editor-store.ts @@ -19,10 +19,10 @@ interface EditorState { } const DEFAULT_CANVAS_PRESETS: CanvasPreset[] = [ - { name: "16:9 HD", width: 1920, height: 1080 }, - { name: "9:16 Mobile", width: 1080, height: 1920 }, - { name: "1:1 Square", width: 1080, height: 1080 }, - { name: "4:3 Standard", width: 1440, height: 1080 }, + { name: "16:9", width: 1920, height: 1080 }, + { name: "9:16", width: 1080, height: 1920 }, + { name: "1:1", width: 1080, height: 1080 }, + { name: "4:3", width: 1440, height: 1080 }, ]; // Helper function to find the best matching canvas preset for an aspect ratio