mirror of https://github.com/usual2970/certimate
fix build error
parent
01d30bb742
commit
6d25f9c205
|
@ -98,7 +98,7 @@ const StartForm = ({ data }: StartFormProps) => {
|
||||||
<Radio.Group
|
<Radio.Group
|
||||||
{...field}
|
{...field}
|
||||||
value={method}
|
value={method}
|
||||||
onChange={(e) => {
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
setMethod(e.target.value);
|
setMethod(e.target.value);
|
||||||
}}
|
}}
|
||||||
className="flex space-x-3"
|
className="flex space-x-3"
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
declare module "antd/locale/zh_CN" {
|
||||||
|
import zhCN from "antd/locale/zh_CN";
|
||||||
|
export default zhCN;
|
||||||
|
}
|
Loading…
Reference in New Issue