schema prisma

deskripsi:
- penambahan jenis kelamin pada db sticker
This commit is contained in:
2025-05-19 15:09:52 +08:00
parent b1068933c2
commit 752ab80de0
5 changed files with 17 additions and 35 deletions

View File

@@ -21,7 +21,6 @@ import {
} from "@mantine/core";
import { useDisclosure, useShallowEffect } from "@mantine/hooks";
import { IconX } from "@tabler/icons-react";
import dynamic from "next/dynamic";
import React, { useState } from "react";
import { forum_funCreateKomentar } from "../../fun/create/fun_create_komentar";
import {
@@ -30,24 +29,6 @@ import {
} from "../../model/interface";
import { ISticker } from "@/app_modules/_global/lib/interface/stiker";
const ReactQuill = dynamic(
async () => {
const { default: RQ } = await import("react-quill");
// Tidak perlu import CSS dengan import statement
return function comp({ forwardedRef, ...props }: any) {
return <RQ ref={forwardedRef} {...props} />;
};
},
{
ssr: false,
loading: () => (
<Text fs={"italic"} c={"gray.8"} fz={12}>
Ketik pesan di sini atau tambahkan stiker...
</Text>
),
}
);
export default function Forum_V3_CreateKomentar({
postingId,
data,