Skip to content

Commit

Permalink
refactor: make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
aaschlote committed Nov 11, 2024
1 parent acbdc39 commit cb92fb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/domains/fluggastrechte/formular/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import abgabeFlow from "./abgabe/flow.json";
import type { FluggastrechtContext } from "./context";
import { flugdatenDone } from "./flugdaten/doneFunctions";
import flugdatenFlow from "./flugdaten/flow.json";
import prozessfuehrungFlow from "./prozessfuehrung/flow.json";
import { grundvoraussetzungenDone } from "./grundvoraussetzungen/doneFunctions";
import grundvoraussetzungenFlow from "./grundvoraussetzungen/flow.json";
import { fluggastrechteGuards } from "./guards";
Expand All @@ -16,6 +15,8 @@ import {
weiterePersonenDone,
} from "./persoenlicheDaten/doneFunctions";
import persoenlicheDatenFlow from "./persoenlicheDaten/flow.json";
import { prozessfuehrungDone } from "./prozessfuehrung/doneFunctions";
import prozessfuehrungFlow from "./prozessfuehrung/flow.json";
import { streitwertKostenDone } from "./streitwertKosten/doneFunctions";
import streitwertKostenFlow from "./streitwertKosten/flow.json";
import {
Expand All @@ -35,7 +36,6 @@ import {
isWeiterePersonen,
} from "./stringReplacements";
import zusammenfassungFlow from "./zusammenfassung/flow.json";
import { prozessfuehrungDone } from "./prozessfuehrung/doneFunctions";

const flowTransitionConfig: FlowTransitionConfig = {
sourceFlowId: "/fluggastrechte/vorabcheck",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { GenericGuard } from "~/domains/guards.server";
import { objectKeysNonEmpty } from "~/util/objectKeysNonEmpty";
import { FluggastrechtProzessfuehrungContext } from "./context";
import type { FluggastrechtProzessfuehrungContext } from "./context";

export const prozessfuehrungDone: GenericGuard<
FluggastrechtProzessfuehrungContext
Expand Down

0 comments on commit cb92fb5

Please sign in to comment.