From 328c73c2099c44229c39667ce41cbbea6b371440 Mon Sep 17 00:00:00 2001 From: alikia2x Date: Sun, 8 Jun 2025 18:24:15 +0800 Subject: [PATCH] fix: 'close' is missing in DialogButtonGroup in ErrorDialog --- packages/next/components/utils/ErrorDialog.tsx | 2 +- packages/next/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/next/components/utils/ErrorDialog.tsx b/packages/next/components/utils/ErrorDialog.tsx index de2d7de..f8600a5 100644 --- a/packages/next/components/utils/ErrorDialog.tsx +++ b/packages/next/components/utils/ErrorDialog.tsx @@ -14,7 +14,7 @@ export const ErrorDialog: React.FC = ({ children, closeDialog, <> {errorCode ? t(errorCode) : "错误"} {children} - + 关闭 diff --git a/packages/next/package.json b/packages/next/package.json index c1c8b6b..59dfc18 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "next", - "version": "2.9.0", + "version": "2.9.1", "private": true, "scripts": { "dev": "next dev --turbopack -p 7400",