diff --git a/src/frontend/src/customization/components/custom-terms-links.tsx b/src/frontend/src/customization/components/custom-terms-links.tsx new file mode 100644 index 000000000..279a1b04a --- /dev/null +++ b/src/frontend/src/customization/components/custom-terms-links.tsx @@ -0,0 +1,3 @@ +export const CustomTermsLinks = () => { + return <>; +}; diff --git a/src/frontend/src/pages/SettingsPage/pages/GeneralPage/index.tsx b/src/frontend/src/pages/SettingsPage/pages/GeneralPage/index.tsx index 719c55174..a5e9a0ef5 100644 --- a/src/frontend/src/pages/SettingsPage/pages/GeneralPage/index.tsx +++ b/src/frontend/src/pages/SettingsPage/pages/GeneralPage/index.tsx @@ -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 = () => { /> )} + + ); };