This is an automated email from the ASF dual-hosted git repository.

pierrejeambrun pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-2-test by this push:
     new 0cb011b0ae5 Fix static checks (#64478)
0cb011b0ae5 is described below

commit 0cb011b0ae510baaf8019c3d94b85fcd742b798c
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Mon Mar 30 16:05:04 2026 +0200

    Fix static checks (#64478)
---
 airflow-core/src/airflow/ui/src/queries/useDeleteDag.ts    | 2 +-
 airflow-core/src/airflow/ui/src/queries/useDeleteDagRun.ts | 2 +-
 airflow-core/src/airflow/ui/src/queries/useTrigger.ts      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow-core/src/airflow/ui/src/queries/useDeleteDag.ts 
b/airflow-core/src/airflow/ui/src/queries/useDeleteDag.ts
index 7ff6b10496e..d5f4838df72 100644
--- a/airflow-core/src/airflow/ui/src/queries/useDeleteDag.ts
+++ b/airflow-core/src/airflow/ui/src/queries/useDeleteDag.ts
@@ -22,8 +22,8 @@ import { useTranslation } from "react-i18next";
 import { useDagServiceDeleteDag, useDagServiceGetDagsUiKey } from 
"openapi/queries";
 import { useDagServiceGetDagKey } from "openapi/queries";
 import { toaster } from "src/components/ui";
-import { createErrorToaster } from "src/utils";
 import { gridQueryKeys } from "src/queries/gridViewQueryKeys";
+import { createErrorToaster } from "src/utils";
 
 export const useDeleteDag = ({
   dagId,
diff --git a/airflow-core/src/airflow/ui/src/queries/useDeleteDagRun.ts 
b/airflow-core/src/airflow/ui/src/queries/useDeleteDagRun.ts
index b98bbbe5120..fc45986ac26 100644
--- a/airflow-core/src/airflow/ui/src/queries/useDeleteDagRun.ts
+++ b/airflow-core/src/airflow/ui/src/queries/useDeleteDagRun.ts
@@ -27,8 +27,8 @@ import {
   useTaskInstanceServiceGetHitlDetailsKey,
 } from "openapi/queries";
 import { toaster } from "src/components/ui";
-import { createErrorToaster } from "src/utils";
 import { gridQueryKeys } from "src/queries/gridViewQueryKeys";
+import { createErrorToaster } from "src/utils";
 
 type DeleteDagRunParams = {
   dagId: string;
diff --git a/airflow-core/src/airflow/ui/src/queries/useTrigger.ts 
b/airflow-core/src/airflow/ui/src/queries/useTrigger.ts
index c7af554129c..447b843def4 100644
--- a/airflow-core/src/airflow/ui/src/queries/useTrigger.ts
+++ b/airflow-core/src/airflow/ui/src/queries/useTrigger.ts
@@ -25,8 +25,8 @@ import { useDagRunServiceTriggerDagRun, 
useDagServiceGetDagsUiKey } from "openap
 import type { TriggerDagRunResponse } from "openapi/requests/types.gen";
 import type { DagRunTriggerParams } from "src/components/TriggerDag/types";
 import { toaster } from "src/components/ui";
-import { createErrorToaster } from "src/utils";
 import { gridQueryKeys } from "src/queries/gridViewQueryKeys";
+import { createErrorToaster } from "src/utils";
 
 export const useTrigger = ({ dagId, onSuccessConfirm }: { dagId: string; 
onSuccessConfirm: () => void }) => {
   const queryClient = useQueryClient();

Reply via email to