fix: remove redundant "opencut" prefix from storage key

This commit is contained in:
Maze Winther 2026-04-15 01:50:30 +02:00
parent 769a7e708a
commit c839db9234
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import { generateUUID } from "@/utils/id";
import type { NormalizedCubicBezier } from "@/lib/animation/types";
import type { EasingPreset } from "./easing-presets";
const STORAGE_KEY = "opencut:graph-editor-presets";
const STORAGE_KEY = "graph-editor-presets";
let cachedPresets: EasingPreset[] | null = null;
const listeners = new Set<() => void>();