diff --git a/sites/partners/src/components/settings/ManageIconSection.tsx b/sites/partners/src/components/settings/ManageIconSection.tsx
deleted file mode 100644
index 636a0db3cde..00000000000
--- a/sites/partners/src/components/settings/ManageIconSection.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from "react"
-import { faClone, faPenToSquare, faTrashCan } from "@fortawesome/free-regular-svg-icons"
-import { Icon, IconFillColors } from "@bloom-housing/ui-components"
-
-type IconContentProps = {
- onCopy: () => void
- copyTestId: string
- onDelete?: () => void
- deleteTestId?: string
- onEdit: () => void
- editTestId: string
-}
-
-const ManageIconSection = (props: IconContentProps) => {
- return (
-
-
-
-
- {props.onDelete && (
-
- )}
-
-
- )
-}
-
-export default ManageIconSection
diff --git a/sites/partners/src/pages/sign-in.tsx b/sites/partners/src/pages/sign-in.tsx
index c3d02399dde..f1a37706053 100644
--- a/sites/partners/src/pages/sign-in.tsx
+++ b/sites/partners/src/pages/sign-in.tsx
@@ -13,9 +13,6 @@ import {
t,
ResendConfirmationModal,
RequestType,
- FormSignInMFACode,
- FormSignInAddPhone,
- FormSignInMFAType,
} from "@bloom-housing/ui-components"
import FormsLayout from "../layouts/forms"
import {
@@ -29,6 +26,9 @@ import {
onSubmitMfaCodeWithPhone,
onSubmitMfaCode,
} from "../lib/users/signInHelpers"
+import { FormSignInAddPhone } from "../components/users/FormSignInAddPhone"
+import { FormSignInMFACode } from "../components/users/FormSignInMFACode"
+import { FormSignInMFAType } from "../components/users/FormSignInMFAType"
const SignIn = () => {
const { login, requestMfaCode, userService } = useContext(AuthContext)