Skip to content

Commit 602961e

Browse files
committed
style(web): format ccode
1 parent 5021d52 commit 602961e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/components/workflow/workflow-canvas.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import "@xyflow/react/dist/style.css";
22

3+
import { WorkflowType } from "@dafthunk/types";
34
import {
45
Background,
56
BackgroundVariant,
@@ -48,7 +49,6 @@ import type {
4849
WorkflowExecutionStatus,
4950
WorkflowNodeType,
5051
} from "./workflow-types";
51-
import { WorkflowType } from "@dafthunk/types";
5252

5353
const nodeTypes = {
5454
workflowNode: WorkflowNode,

apps/web/src/pages/workflows/deployment-detail-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import {
3535
DropdownMenuItem,
3636
DropdownMenuTrigger,
3737
} from "@/components/ui/dropdown-menu";
38+
import { EmailTriggerDialog } from "@/components/workflow/email-trigger-dialog";
3839
import { ExecutionFormDialog } from "@/components/workflow/execution-form-dialog";
3940
import { HttpIntegrationDialog } from "@/components/workflow/http-integration-dialog";
4041
import {
@@ -60,7 +61,6 @@ import {
6061
useWorkflowExecution,
6162
} from "@/services/workflow-service";
6263
import { adaptDeploymentNodesToReactFlowNodes } from "@/utils/utils";
63-
import { EmailTriggerDialog } from "@/components/workflow/email-trigger-dialog";
6464

6565
// --- Inline deployment history columns and helper ---
6666
const formatDeploymentDate = (dateString: string | Date) => {

apps/web/src/pages/workflows/editor-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { toast } from "sonner";
66

77
import { useAuth } from "@/components/auth-context";
88
import { InsetLoading } from "@/components/inset-loading";
9+
import { EmailTriggerDialog } from "@/components/workflow/email-trigger-dialog";
910
import { ExecutionEmailDialog } from "@/components/workflow/execution-email-dialog";
1011
import { ExecutionFormDialog } from "@/components/workflow/execution-form-dialog";
1112
import { ExecutionJsonBodyDialog } from "@/components/workflow/execution-json-body-dialog";
@@ -36,7 +37,6 @@ import {
3637
useWorkflow,
3738
useWorkflowExecution,
3839
} from "@/services/workflow-service";
39-
import { EmailTriggerDialog } from "@/components/workflow/email-trigger-dialog";
4040

4141
export function EditorPage() {
4242
const { id } = useParams<{ id: string }>();

0 commit comments

Comments
 (0)