Skip to content

Commit

Permalink
fix: rmv expression from argument expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
qweliant committed May 7, 2024
1 parent 327a3fc commit 6e8dbad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions core/prisma/exampleCommunitySeeds/unjournal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ import { faker } from "@faker-js/faker";
import { PrismaClient, PubType } from "@prisma/client";
import { v4 as uuidv4 } from "uuid";

import type { db as kyselyDb } from "~/kysely/database";
import type { CommunitiesId } from "~/kysely/types/public/Communities";
import type { PubTypesId } from "~/kysely/types/public/PubTypes";
import { corePubFields } from "~/actions/corePubFields";
import { db } from "~/kysely/database";
import { StagesId } from "~/kysely/types/public/Stages";
import { env } from "../../lib/env/env.mjs";
import { FileUpload } from "../../lib/fields/fileUpload";

export const unJournalId = "03e7a5fd-bdca-4682-9221-3a69992c1f3b";

export default async function main(
db: typeof kyselyDb,
prisma: PrismaClient,
communityUUID: string
) {
Expand Down
2 changes: 1 addition & 1 deletion core/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async function main() {
logger.info("build crocroc");
await buildCrocCroc(db, crocCrocId);
logger.info("build unjournal");
await buildUnjournal(db, prisma, unJournalId);
await buildUnjournal(prisma, unJournalId);

try {
await createUserMembers(
Expand Down

0 comments on commit 6e8dbad

Please sign in to comment.