From 030acd1368b78a4ea52b27f1c8eb7472689ef0ee Mon Sep 17 00:00:00 2001 From: Daniel Sutton Date: Fri, 21 Aug 2026 12:50:40 +0100 Subject: [PATCH] fix(run-store): import only what the helpers use --- internal-packages/run-store/src/redisSnapshotStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal-packages/run-store/src/redisSnapshotStore.ts b/internal-packages/run-store/src/redisSnapshotStore.ts index a5a2e6092..b6bd4424c 100644 --- a/internal-packages/run-store/src/redisSnapshotStore.ts +++ b/internal-packages/run-store/src/redisSnapshotStore.ts @@ -1,5 +1,5 @@ -import { createRedisClient, type Redis, type RedisOptions } from "@internal/redis"; -import { Logger } from "@trigger.dev/core/logger"; +import type { RedisOptions } from "@internal/redis"; +import type { Logger } from "@trigger.dev/core/logger"; export type SnapshotKeys = { e: string; idx: string; cur: string; seq: string };