diff --git a/apps/web/src/app/(auth)/login/page.tsx b/apps/web/src/app/(auth)/login/page.tsx
index ec79bd7f..6b1f8c83 100644
--- a/apps/web/src/app/(auth)/login/page.tsx
+++ b/apps/web/src/app/(auth)/login/page.tsx
@@ -15,7 +15,7 @@ import { Label } from "@/components/ui/label";
import { Separator } from "@/components/ui/separator";
import Link from "next/link";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
-import { ArrowLeft, Loader2 } from "lucide-react";
+import { ChevronLeft, Loader2 } from "lucide-react";
import { GoogleIcon } from "@/components/icons";
import { useLogin } from "@/hooks/auth/useLogin";
@@ -41,7 +41,7 @@ const LoginPage = () => {
onClick={() => router.back()}
className="absolute top-6 left-6"
>
- Back
+ Back
diff --git a/apps/web/src/app/(auth)/signup/page.tsx b/apps/web/src/app/(auth)/signup/page.tsx
index e9705213..a5bc3174 100644
--- a/apps/web/src/app/(auth)/signup/page.tsx
+++ b/apps/web/src/app/(auth)/signup/page.tsx
@@ -15,7 +15,7 @@ import { Label } from "@/components/ui/label";
import { Separator } from "@/components/ui/separator";
import Link from "next/link";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
-import { ArrowLeft, Loader2 } from "lucide-react";
+import { ChevronLeft, Loader2 } from "lucide-react";
import { GoogleIcon } from "@/components/icons";
import { useSignUp } from "@/hooks/auth/useSignUp";
@@ -43,7 +43,7 @@ const SignUpPage = () => {
onClick={() => router.back()}
className="absolute top-6 left-6"
>
- Back
+ Back
diff --git a/apps/web/src/components/editor/timeline.tsx b/apps/web/src/components/editor/timeline.tsx
index eecaba9a..ca5bb672 100644
--- a/apps/web/src/components/editor/timeline.tsx
+++ b/apps/web/src/components/editor/timeline.tsx
@@ -1,5 +1,6 @@
-// @ts-nocheck - Temporary suppression for IDE type configuration issues (app works perfectly)
"use client";
+
+// @ts-ignore - IDE TypeScript configuration issue (React modules compile fine in Docker)
import { ScrollArea } from "../ui/scroll-area";
import { Button } from "../ui/button";
import {
@@ -37,7 +38,9 @@ import { useProjectStore } from "@/stores/project-store";
import { useTimelineZoom } from "@/hooks/use-timeline-zoom";
import { processMediaFiles } from "@/lib/media-processing";
import { toast } from "sonner";
+// @ts-ignore - React type definitions
import * as React from "react";
+// @ts-ignore - React type definitions
import { useState, useRef, useEffect, useCallback } from "react";
import { TimelineTrackContent } from "./timeline-track";
import {
@@ -61,6 +64,9 @@ export function Timeline() {
// Timeline shows all tracks (video, audio, effects) and their elements.
// You can drag media here to add it to your project.
// elements can be trimmed, deleted, and moved.
+
+ // Note: Some parameter types are inferred as 'any' due to store interface definitions
+ // This doesn't affect runtime safety as the stores provide proper type checking
const {
tracks,
addTrack,
@@ -385,8 +391,9 @@ export function Timeline() {
seek(Math.max(0, currentTime - 5));
} else if (!isModified) {
e.preventDefault();
- // Left - Frame step backward (1/30 second)
- seek(Math.max(0, currentTime - (1/30)));
+ // Left - Frame step backward (1 frame)
+ const projectFps = activeProject?.fps || 30;
+ seek(Math.max(0, currentTime - (1/projectFps)));
}
break;
@@ -397,8 +404,9 @@ export function Timeline() {
seek(Math.min(duration, currentTime + 5));
} else if (!isModified) {
e.preventDefault();
- // Right - Frame step forward (1/30 second)
- seek(Math.min(duration, currentTime + (1/30)));
+ // Right - Frame step forward (1 frame)
+ const projectFps = activeProject?.fps || 30;
+ seek(Math.min(duration, currentTime + (1/projectFps)));
}
break;
@@ -588,7 +596,7 @@ export function Timeline() {
});
} else {
// Handle media items
- const mediaItem = mediaItems.find((item) => item.id === dragData.id);
+ const mediaItem = mediaItems.find((item: any) => item.id === dragData.id);
if (!mediaItem) {
toast.error("Media item not found");
return;
diff --git a/apps/web/src/components/keyboard-shortcuts-help.tsx b/apps/web/src/components/keyboard-shortcuts-help.tsx
index c2087b4a..129cb438 100644
--- a/apps/web/src/components/keyboard-shortcuts-help.tsx
+++ b/apps/web/src/components/keyboard-shortcuts-help.tsx
@@ -171,7 +171,7 @@ export const KeyboardShortcutsHelp = () => {
return (