update build ok,

This commit is contained in:
louiscklaw
2025-04-22 02:05:08 +08:00
parent f4f4a0eb7c
commit 374e3de59b
11 changed files with 6 additions and 643 deletions

View File

@@ -25,8 +25,10 @@ this is the content of `@/constants`
- read, remember and link up the ideas in file stated above,
i will tell them the task afterwards
The software engineer will provide solutions, while QA engineer will feedback the opinion.
---
The software engineer will provide solutions,
while QA engineer will feedback the opinion.
this is now not in debug phase,
so, no need to reply me what they are going on or their insight throught the prompt.

View File

@@ -2,11 +2,8 @@ import { COL_QUIZ_LP_CATEGORIES } from '@/constants';
import type { RecordModel } from 'pocketbase';
import { pb } from '@/lib/pb';
import { CreateFormProps } from '@/components/dashboard/lp_categories/type';
interface CreateForm {
// TODO: Add QuizLPCategories fields
}
export default function createQuizLPCategory(data: CreateForm): Promise<RecordModel> {
export default function createQuizLPCategory(data: CreateFormProps): Promise<RecordModel> {
return pb.collection(COL_QUIZ_LP_CATEGORIES).create(data);
}