fix build errors

This commit is contained in:
Siddharth
2026-01-20 20:05:14 -08:00
parent 08f58b3539
commit 6d2e1edb5b
8 changed files with 263 additions and 444 deletions
@@ -671,7 +671,7 @@ export function SettingsPanel({
<div>
<div className="mb-1.5 text-xs font-medium text-slate-400">Output Size</div>
<div className="bg-white/5 border border-white/5 p-1 w-full grid grid-cols-3 h-auto rounded-xl">
{Object.entries(GIF_SIZE_PRESETS).map(([key, preset]) => (
{Object.entries(GIF_SIZE_PRESETS).map(([key, _preset]) => (
<button
key={key}
onClick={() => onGifSizePresetChange?.(key as GifSizePreset)}