fix build error

This commit is contained in:
yoan 2024-12-22 18:37:03 +08:00
parent 01d30bb742
commit 6d25f9c205
2 changed files with 5 additions and 1 deletions

View File

@ -98,7 +98,7 @@ const StartForm = ({ data }: StartFormProps) => {
<Radio.Group
{...field}
value={method}
onChange={(e) => {
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setMethod(e.target.value);
}}
className="flex space-x-3"

4
ui/src/declarations.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module "antd/locale/zh_CN" {
import zhCN from "antd/locale/zh_CN";
export default zhCN;
}