Skip to content

Commit 3f904b1

Browse files
committed
Fix imports
1 parent a8013c4 commit 3f904b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/supabase/forgot-password-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useResetPassword } from "ra-supabase-core";
33
import { Form, required, useNotify, useTranslate } from "ra-core";
44
import { Layout } from "@/components/supabase/layout.tsx";
55
import type { FieldValues, SubmitHandler } from "react-hook-form";
6-
import { TextInput } from "@/components/admin";
6+
import { TextInput } from "@/components/admin/text-input";
77
import { Button } from "@/components/ui/button.tsx";
88

99
interface FormData {

src/components/supabase/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from "react";
2-
import { Notification } from "@/components/admin";
2+
import { Notification } from "@/components/admin/notification";
33
import { useConfigurationContext } from "@/components/atomic-crm/root/ConfigurationContext";
44

55
export const Layout = ({ children }: React.PropsWithChildren) => {

0 commit comments

Comments
 (0)