This commit is contained in:
oiov
2024-11-12 15:07:21 +08:00
parent d1651de225
commit 3c93697403
2 changed files with 2 additions and 2 deletions
@@ -1,6 +1,6 @@
"use client";
import { useRef, useState } from "react";
import { useState } from "react";
import Link from "next/link";
import { User } from "@prisma/client";
import { PenLine, RefreshCwIcon } from "lucide-react";
@@ -36,7 +36,6 @@ import {
TooltipTrigger,
} from "@/components/ui/tooltip";
import CountUpFn from "@/components/dashboard/count-up";
import StatusDot from "@/components/dashboard/status-dot";
import { FormType, RecordForm } from "@/components/forms/record-form";
import { EmptyPlaceholder } from "@/components/shared/empty-placeholder";
import { Icons } from "@/components/shared/icons";
+1
View File
@@ -19,6 +19,7 @@ async function findOrCreateScrapeMeta(data) {
where: {
ip: data.ip,
type: data.type,
link: data.link,
},
});