feat: Add CustomTermsLinks component to GeneralPage (#8808)

 (frontend): add CustomTermsLinks component to GeneralPage to display custom terms links in the settings page.
This commit is contained in:
Cristhian Zanforlin Lousa 2025-07-01 11:51:24 -03:00 committed by GitHub
commit 2242d7557f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,3 @@
export const CustomTermsLinks = () => {
return <></>;
};

View file

@ -10,6 +10,7 @@ import {
useUpdateUser,
} from "@/controllers/API/queries/auth";
import { useGetProfilePicturesQuery } from "@/controllers/API/queries/files";
import { CustomTermsLinks } from "@/customization/components/custom-terms-links";
import { ENABLE_PROFILE_ICONS } from "@/customization/feature-flags";
import useAuthStore from "@/stores/authStore";
import { cloneDeep } from "lodash";
@ -160,6 +161,8 @@ export const GeneralPage = () => {
/>
)}
</div>
<CustomTermsLinks />
</div>
);
};