fix: remove .js extensions from TypeScript imports

Fixes Next.js build failure caused by .js extensions in relative
imports within VideoMetricsSyncService and ChannelMetricsSyncService.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Martin Porwoll 2026-02-14 17:24:43 +00:00
parent 692498871c
commit ed07e15670
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
import type { Payload } from 'payload'
import { YouTubeClient } from './YouTubeClient.js'
import { YouTubeClient } from './YouTubeClient'
interface ChannelMetricsSyncResult {
success: boolean

View file

@ -2,7 +2,7 @@
import type { Payload } from 'payload'
import { YouTubeClient } from './YouTubeClient.js'
import { YouTubeClient } from './YouTubeClient'
const YOUTUBE_API_BATCH_LIMIT = 50