From 1ea2f9529a906d9c4aa52101d4487adb22ec18e0 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 27 Apr 2026 19:02:39 +0000 Subject: [PATCH] fix: sort import order in temporal-client.ts Co-Authored-By: Paperclip --- apps/api/src/services/temporal-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/services/temporal-client.ts b/apps/api/src/services/temporal-client.ts index 8024739..9157182 100644 --- a/apps/api/src/services/temporal-client.ts +++ b/apps/api/src/services/temporal-client.ts @@ -3,8 +3,8 @@ * Uses @temporalio/client (not worker) since the API server only submits and queries workflows. */ -import type { PipelineProgress } from '@trebuchet/worker/pipeline'; import { Client, Connection } from '@temporalio/client'; +import type { PipelineProgress } from '@trebuchet/worker/pipeline'; export interface TemporalClients { readonly client: Client;