diff --git a/refine-nextjs/plugins/auth-provider-auth0/src/app/login/page.tsx b/refine-nextjs/plugins/auth-provider-auth0/src/app/login/page.tsx index 0b851b3a..367b4d71 100644 --- a/refine-nextjs/plugins/auth-provider-auth0/src/app/login/page.tsx +++ b/refine-nextjs/plugins/auth-provider-auth0/src/app/login/page.tsx @@ -14,12 +14,6 @@ import Typography from "@mui/material/Typography"; import { ThemedTitleV2 } from "@refinedev/mui"; <%_ } _%> -<%_ if (selectedSvg && answers["ui-framework"] !== "no" ) { _%> -import { AppIcon } from "@components/app-icon"; -<%_ } _%> - - - export default function Login() { const { mutate: login } = useLogin(); @@ -39,12 +33,6 @@ export default function Login() { fontSize: "22px", marginBottom: "36px", }} - <%_ if (selectedTitle) { _%> - text="<%= selectedTitle %>" - <%_ } _%> - <%_ if (selectedSvg) { _%> - icon={} - <%_ } _%> /> diff --git a/refine-nextjs/plugins/auth-provider-google/src/app/login/page.tsx b/refine-nextjs/plugins/auth-provider-google/src/app/login/page.tsx index a137ed0d..c2d16e46 100644 --- a/refine-nextjs/plugins/auth-provider-google/src/app/login/page.tsx +++ b/refine-nextjs/plugins/auth-provider-google/src/app/login/page.tsx @@ -12,10 +12,6 @@ import Typography from "@mui/material/Typography"; import { ThemedTitleV2 } from "@refinedev/mui"; <%_ } _%> import { useLogin } from "@refinedev/core"; -<%_ if (selectedSvg && answers["ui-framework"] !== "no" ) { _%> -import { AppIcon } from "@components/app-icon"; -<%_ } _%> - export default function Login() { const { mutate: login } = useLogin(); @@ -35,12 +31,6 @@ export default function Login() { wrapperStyles={{ fontSize: "22px", }} - <%_ if (selectedTitle) { _%> - text="<%= selectedTitle %>" - <%_ } _%> - <%_ if (selectedSvg) { _%> - icon={} - <%_ } _%> /> diff --git a/refine-nextjs/plugins/auth-provider-keycloak/src/app/login/page.tsx b/refine-nextjs/plugins/auth-provider-keycloak/src/app/login/page.tsx index ddd1a2cf..3598fc96 100644 --- a/refine-nextjs/plugins/auth-provider-keycloak/src/app/login/page.tsx +++ b/refine-nextjs/plugins/auth-provider-keycloak/src/app/login/page.tsx @@ -12,10 +12,6 @@ import Typography from "@mui/material/Typography"; import { ThemedTitleV2 } from "@refinedev/mui"; <%_ } _%> import { useLogin } from "@refinedev/core"; - -<%_ if (selectedSvg && answers["ui-framework"] !== "no" ) { _%> -import { AppIcon } from "@components/app-icon"; -<%_ } _%> export default function Login() { const { mutate: login } = useLogin(); @@ -36,12 +32,6 @@ export default function Login() { fontSize: "22px", marginBottom: "36px", }} - <%_ if (selectedTitle) { _%> - text="<%= selectedTitle %>" - <%_ } _%> - <%_ if (selectedSvg) { _%> - icon={} - <%_ } _%> />