This commit is contained in:
Nicholas Koben Kao 2024-01-24 22:28:50 -08:00
parent d8df580339
commit a295df973f
2 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,6 @@ export async function POST(request: Request) {
}) })
.where(eq(checkpointTable.id, checkpoint_id)); .where(eq(checkpointTable.id, checkpoint_id));
} else { } else {
// console.log(data);
await db await db
.update(checkpointTable) .update(checkpointTable)
.set({ .set({

View File

@ -1,4 +1,4 @@
// NOTE: this is work in progress // NOTE: this is WIP for doing client side validation for civitai model downloading
import type { AutoFormInputComponentProps } from "../ui/auto-form/types"; import type { AutoFormInputComponentProps } from "../ui/auto-form/types";
import { FormControl, FormItem, FormLabel } from "../ui/form"; import { FormControl, FormItem, FormLabel } from "../ui/form";
import { LoadingIcon } from "@/components/LoadingIcon"; import { LoadingIcon } from "@/components/LoadingIcon";