Compare commits

...

1 Commits

Author SHA1 Message Date
jivfly
3d5a645a3b feat: fix field name error of termsOfUse (#1715) 2023-04-09 01:01:04 +08:00

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);
});
}, []);