switch to bun, update all packages

This commit is contained in:
2026-03-10 11:00:39 +01:00
parent 276c3dd75f
commit 9a7e8922f8
57 changed files with 4156 additions and 11347 deletions

View File

@@ -11,7 +11,7 @@ import { useState } from 'react';
import { SelectFormField, TextInputFormField } from '~/app/_components/Form/Fields';
import { usePathname, useRouter } from 'next/navigation';
import { SelectItem } from '~/components/ui/select';
import FormMutationContextProvider from '~/app/_components/Form/Components/MutationProvider';
import {FormMutationContextProvider} from '~/app/_components/Form/Components/MutationProvider';
export default function CreateUpdateCvCategoryForm(params: { className?: string, entity?: IterableElement<RouterOutputs['category']['select']> }) {
const schemas = entitySchemas('cvCategory')
const [id, setId] = useState<string | undefined>(params.entity ? params.entity.id : undefined)

View File

@@ -1,15 +1,15 @@
'use server'
import { SignedIn } from "@clerk/nextjs";
import { Show } from "@clerk/nextjs";
export default async function AdminPage() {
return (
<SignedIn>
<Show when="signed-in">
<main className="flex min-h-screen flex-col items-center justify-center">
<div>
hello admin
</div>
</main>
</SignedIn>
</Show>
)
}