N-FIN-8: fix file naming
This commit is contained in:
parent
95f36977da
commit
10cb6de620
20 changed files with 19 additions and 19 deletions
|
@ -9,7 +9,7 @@ import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from
|
|||
import { DataTable } from '@/components/ui/data-table';
|
||||
import { columns } from '@/app/categories/columns';
|
||||
import { z } from 'zod';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -11,7 +11,7 @@ import { DataTable } from '@/components/ui/data-table';
|
|||
import { columns } from '@/app/entities/columns';
|
||||
import { z } from 'zod';
|
||||
import { entityFormSchema } from '@/lib/form-schemas/entityFormSchema';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '
|
|||
import { Input } from '@/components/ui/input';
|
||||
import React from 'react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '
|
|||
import { Input } from '@/components/ui/input';
|
||||
import React from 'react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '
|
|||
import { Input } from '@/components/ui/input';
|
||||
import React, { useState } from 'react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -8,7 +8,7 @@ import { Input } from '@/components/ui/input';
|
|||
import React from 'react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { signInFormSchema } from '@/lib/form-schemas/signInFormSchema';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use client';
|
||||
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import React from 'react';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
|
|
@ -8,7 +8,7 @@ import { Input } from '@/components/ui/input';
|
|||
import React from 'react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { signUpFormSchema } from '@/lib/form-schemas/signUpFormSchema';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Edit, Trash } from 'lucide-react';
|
|||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog';
|
||||
import { DataTable } from '@/components/ui/data-table';
|
||||
import { z } from 'zod';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'sonner';
|
||||
import { sonnerContent } from '@/components/ui/sonner';
|
||||
|
|
|
@ -4,7 +4,7 @@ import { useTheme } from 'next-themes';
|
|||
import { Toaster as Sonner } from 'sonner';
|
||||
import { AlertCircle, CheckCircle, HelpCircle, XCircle } from 'lucide-react';
|
||||
import React, { JSX } from 'react';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
|
||||
type ToasterProps = React.ComponentProps<typeof Sonner>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { z } from 'zod';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { z } from 'zod';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { entityFormSchema } from '@/lib/form-schemas/entityFormSchema';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { z } from 'zod';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { prismaClient } from '@/prisma';
|
||||
import { getUser } from '@/auth';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
|
|
@ -3,7 +3,7 @@ import { Argon2id } from 'oslo/password';
|
|||
import { lucia } from '@/auth';
|
||||
import { cookies } from 'next/headers';
|
||||
import { signInFormSchema } from '@/lib/form-schemas/signInFormSchema';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { URL_HOME } from '@/lib/constants';
|
||||
import { prismaClient } from '@/prisma';
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { getSession, lucia } from '@/auth';
|
||||
import { cookies } from 'next/headers';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { URL_SIGN_IN } from '@/lib/constants';
|
||||
|
||||
export default async function signOut(): Promise<ActionResponse> {
|
||||
|
|
|
@ -4,7 +4,7 @@ import { generateId } from 'lucia';
|
|||
import { lucia } from '@/auth';
|
||||
import { cookies } from 'next/headers';
|
||||
import { signUpFormSchema } from '@/lib/form-schemas/signUpFormSchema';
|
||||
import { ActionResponse } from '@/lib/types/ActionResponse';
|
||||
import { ActionResponse } from '@/lib/types/actionResponse';
|
||||
import { URL_HOME } from '@/lib/constants';
|
||||
import { prismaClient } from '@/prisma';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue