Skip to content

Commit

Permalink
fixes import error
Browse files Browse the repository at this point in the history
  • Loading branch information
cammiida committed Dec 19, 2024
1 parent 3cf6ec6 commit 0851fdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/layout/SigneeList/SigneeListError.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { z, ZodError } from 'zod';
import { Lang } from 'src/features/language/Lang';
import { useLanguage } from 'src/features/language/useLanguage';

const problemDetailsSchema = z.object({
export const problemDetailsSchema = z.object({
detail: z.string(),
status: z.number(),
title: z.string(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ZodError } from 'zod';

import { Lang } from 'src/features/language/Lang';
import { useLanguage } from 'src/features/language/useLanguage';
import { problemDetailsSchema } from 'src/layout/SigneeList/SigneeListComponent';
import { problemDetailsSchema } from 'src/layout/SigneeList/SigneeListError';

export function SigningDocumentListError({ error }: { error: Error }) {
const { langAsString } = useLanguage();
Expand Down

0 comments on commit 0851fdf

Please sign in to comment.