...
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-12-11 21:36:45 +08:00
parent 65aacc1582
commit b69e168558
41 changed files with 763 additions and 189 deletions

View File

@@ -1,5 +1,5 @@
import LightButton from "@/components/buttons/LightButton";
import Input from "@/components/Input";
import LightButton from "@/components/ui/buttons/LightButton";
import Input from "@/components/ui/Input";
import { X } from "lucide-react";
import { useRef } from "react";
import { useTranslations } from "next-intl";
@@ -83,13 +83,19 @@ export default function AddTextPairModal({
</div>
<div>
{t("locale1")}
<Input ref={input3Ref} className="w-full"
placeholder="en-US"></Input>
<Input
ref={input3Ref}
className="w-full"
placeholder="en-US"
></Input>
</div>
<div>
{t("locale2")}
<Input ref={input4Ref} className="w-full"
placeholder="zh-CN"></Input>
<Input
ref={input4Ref}
className="w-full"
placeholder="zh-CN"
></Input>
</div>
</div>
<LightButton onClick={handleAdd}>{t("add")}</LightButton>