Skip to content

Commit

Permalink
fix lint/type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer6497 committed Aug 21, 2024
1 parent e497538 commit 924f154
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/services/pdf/beratungshilfe/Handout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
beratungshilfeFormular,
type BeratungshilfeFormularContext,
} from "~/flows/beratungshilfeFormular";
import { beratungshilfeAbgabe } from "~/flows/beratungshilfeFormular/abgabe/context";
import { abgabeContext } from "~/flows/shared/abgabe/context";
import { HandoutRow } from "../attachment/HandoutRow";
import { PdfFooter } from "../attachment/PdfFooter";
import { styles } from "../attachment/styles";
Expand Down Expand Up @@ -51,7 +51,7 @@ type Step = {
};

export const dynamicSteps: { [key: string]: Step[] } = {
[beratungshilfeAbgabe.abgabeArt.Enum.ausdrucken]: [
[abgabeContext.abgabeArt.Enum.ausdrucken]: [
{ title: "Antrag ausdrucken" },
{
title: "Antrag unterschreiben",
Expand All @@ -68,7 +68,7 @@ export const dynamicSteps: { [key: string]: Step[] } = {
`Sie können den Antrag direkt im Amtsgericht abgeben oder per Post schicken. ${validAmtsgericht ? "Die Adresse des zuständigen Amtsgericht finden Sie auf der ersten Seite des Antrags im Adressfeld." : "Ihr zuständiges Amtsgericht finden Sie über den Service “Amtsgericht finden” auf https://service.justiz.de/beratungshilfe."}`,
},
],
[beratungshilfeAbgabe.abgabeArt.Enum.online]: [
[abgabeContext.abgabeArt.Enum.online]: [
{
title: "Antrag prüfen und speichern",
value:
Expand Down

0 comments on commit 924f154

Please sign in to comment.