mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 19:44:12 +00:00
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:
parent
692498871c
commit
ed07e15670
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
import type { Payload } from 'payload'
|
||||
|
||||
import { YouTubeClient } from './YouTubeClient.js'
|
||||
import { YouTubeClient } from './YouTubeClient'
|
||||
|
||||
interface ChannelMetricsSyncResult {
|
||||
success: boolean
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
import type { Payload } from 'payload'
|
||||
|
||||
import { YouTubeClient } from './YouTubeClient.js'
|
||||
import { YouTubeClient } from './YouTubeClient'
|
||||
|
||||
const YOUTUBE_API_BATCH_LIMIT = 50
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue