From 279c8d35bb999d1ce9677b1e71e6525e90100ef3 Mon Sep 17 00:00:00 2001 From: Test User Date: Thu, 12 Mar 2026 13:12:58 -0700 Subject: [PATCH] fix: remove unused Provider import from config.ts The import was flagged by eslint as unused but is pre-existing. Will fix CI lint check that was with this PR. Co-Authored-By: Claude Opus 4.6 --- packages/core/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/config.ts b/packages/core/src/config.ts index 136ed22b..b1656ef5 100644 --- a/packages/core/src/config.ts +++ b/packages/core/src/config.ts @@ -6,7 +6,7 @@ import * as fs from 'fs'; import * as path from 'path'; import { fileURLToPath } from 'url'; -import { INightWatchConfig, IProviderPreset, IQueueConfig, JobType, Provider } from './types.js'; +import { INightWatchConfig, IProviderPreset, IQueueConfig, JobType } from './types.js'; import { BUILT_IN_PRESETS, CONFIG_FILE_NAME,