Skip to content

Commit 998ceb3

Browse files
committed
fixing the forgot password import
1 parent 9539d99 commit 998ceb3

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

resources/css/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
--radius: 0.5rem;
3232
--sidebar-background: 0 0% 98%;
3333
--sidebar-foreground: 240 5.3% 26.1%;
34-
--sidebar-primary: 240 5.9% 10%;
34+
--sidebar-primary: 240 0% 10%;
3535
--sidebar-primary-foreground: 0 0% 98%;
3636
--sidebar-accent: 240 4.8% 95.9%;
3737
--sidebar-accent-foreground: 240 5.9% 30%;
@@ -83,4 +83,4 @@
8383
body {
8484
@apply bg-background text-foreground;
8585
}
86-
}
86+
}

resources/js/layouts/app-layout.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@ import { AppHeader } from '@/components/app-header';
22
import { AppShell } from '@/components/app-shell';
33
import { AppSidebar } from '@/components/app-sidebar';
44
import { type BreadcrumbItem } from '@/types';
5-
6-
// For the sidebar inset variant, uncomment the import line below and replace <main> with <SidebarInset>
7-
// If you are not using the sidebar inset, remove these comments and keep the default layout.
8-
//import { SidebarInset } from '@/components/ui/sidebar';
5+
import { SidebarInset } from '@/components/ui/sidebar';
96

107
export default function App({ children, breadcrumbs = [] }: { children: React.ReactNode; breadcrumbs?: BreadcrumbItem[] }) {
118
return (
129
<AppShell>
1310
<AppSidebar />
14-
<main>
11+
<SidebarInset>
1512
<AppHeader breadcrumbs={breadcrumbs} />
1613
{children}
17-
</main>
14+
</SidebarInset>
1815
</AppShell>
1916
);
2017
}

resources/js/pages/auth/forgot-password.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { LoaderCircle } from 'lucide-react';
44
import { FormEventHandler } from 'react';
55

66
import InputError from '@/components/input-error';
7-
import { TextLink } from '@/components/text-link';
7+
import TextLink from '@/components/text-link';
88
import { Button } from '@/components/ui/button';
99
import { Input } from '@/components/ui/input';
1010
import { Label } from '@/components/ui/label';

0 commit comments

Comments
 (0)