N-FIN-v1.0.0: fix typo in import

This commit is contained in:
Markus Thielker 2024-03-11 05:31:23 +01:00
parent 9e051618bf
commit a150a51bd5
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ import React from 'react';
import { useRouter } from 'next/navigation';
import { toast } from 'sonner';
import { sonnerContent } from '@/components/ui/sonner';
import { ActionResponse } from '@/lib/types/ActionResponse';
import { ActionResponse } from '@/lib/types/actionResponse';
export default function GenerateSampleDataForm({onSubmit}: { onSubmit: () => Promise<ActionResponse> }) {

View file

@ -3,7 +3,7 @@ import type { Category, Entity } from '@prisma/client';
import { EntityType } from '@prisma/client';
import { getUser } from '@/auth';
import { URL_SIGN_IN } from '@/lib/constants';
import { ActionResponse } from '@/lib/types/ActionResponse';
import { ActionResponse } from '@/lib/types/actionResponse';
export default async function generateSampleData(): Promise<ActionResponse> {
'use server';