feat: fix field name error of termsOfUse (#1715)

This commit is contained in:
jivfly
2023-04-09 01:01:04 +08:00
committed by GitHub
parent 4ad21e7781
commit 3d5a645a3b

View File

@ -21,7 +21,7 @@ export const AgreementModal = (props) => {
const [doc, setDoc] = useState("");
useEffect(() => {
getTermsOfUseContent(application.termsOfUseUrl).then((data) => {
getTermsOfUseContent(application.termsOfUse).then((data) => {
setDoc(data);
});
}, []);