From 3ea57ba0233a94148cfd3d0198089f9d9c0c0cc4 Mon Sep 17 00:00:00 2001 From: tone Date: Sat, 27 Dec 2025 13:14:46 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=B0=83=E6=95=B4=E5=A4=8D=E5=88=B6?= =?UTF-8?q?=E5=88=86=E4=BA=AB=E9=93=BE=E6=8E=A5=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/console/(with-menu)/web/blog/components/AddBlog.tsx | 4 ++-- .../app/console/(with-menu)/web/blog/components/utils.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/frontend/app/console/(with-menu)/web/blog/components/AddBlog.tsx b/apps/frontend/app/console/(with-menu)/web/blog/components/AddBlog.tsx index b3592b4..ccedc9d 100644 --- a/apps/frontend/app/console/(with-menu)/web/blog/components/AddBlog.tsx +++ b/apps/frontend/app/console/(with-menu)/web/blog/components/AddBlog.tsx @@ -17,7 +17,7 @@ import { useState } from "react"; import { toast } from "sonner"; import { BlogPermissionCheckBoxs } from "./BlogPermissionCheckBoxs"; import { AdminAPI } from "@/lib/api/client"; -import { handleCopyShareURL } from "./utils"; +import { copyShareURL } from "./utils"; interface AddBlogProps { children: React.ReactNode; @@ -152,7 +152,7 @@ export default function AddBlog({ children, onRefresh }: AddBlogProps) {
-