diff --git a/resources/js/components/heading-small.tsx b/resources/js/components/heading-small.tsx
index b71a16eb3..cbd365835 100644
--- a/resources/js/components/heading-small.tsx
+++ b/resources/js/components/heading-small.tsx
@@ -2,7 +2,7 @@ export default function HeadingSmall({ title, description }: { title: string; de
return (
{title}
- {description && {description}
}
+ {description && {description}
}
);
}
diff --git a/resources/js/components/heading.tsx b/resources/js/components/heading.tsx
index d59163ea7..6384e4b9b 100644
--- a/resources/js/components/heading.tsx
+++ b/resources/js/components/heading.tsx
@@ -2,7 +2,7 @@ export default function Heading({ title, description }: { title: string; descrip
return (
{title}
- {description &&
{description}
}
+ {description &&
{description}
}
);
}
diff --git a/resources/js/components/nav-main.tsx b/resources/js/components/nav-main.tsx
index ab55bd90b..a0cbf9a2f 100644
--- a/resources/js/components/nav-main.tsx
+++ b/resources/js/components/nav-main.tsx
@@ -10,10 +10,7 @@ export function NavMain({ items = [] }: { items: NavItem[] }) {
{items.map((item) => (
-
+
{item.icon && }
{item.title}
diff --git a/resources/js/components/nav-user.tsx b/resources/js/components/nav-user.tsx
index 12102500b..386be8fa5 100644
--- a/resources/js/components/nav-user.tsx
+++ b/resources/js/components/nav-user.tsx
@@ -17,7 +17,7 @@ export function NavUser() {
-
+
diff --git a/resources/js/components/user-info.tsx b/resources/js/components/user-info.tsx
index 4626dc5fb..042e38a50 100644
--- a/resources/js/components/user-info.tsx
+++ b/resources/js/components/user-info.tsx
@@ -15,7 +15,7 @@ export function UserInfo({ user, showEmail = false }: { user: User; showEmail?:
{user.name}
- {showEmail && {user.email}}
+ {showEmail && {user.email}}
>
);
diff --git a/resources/js/layouts/auth/auth-card-layout.tsx b/resources/js/layouts/auth/auth-card-layout.tsx
index 9884423d5..d0bfc4e08 100644
--- a/resources/js/layouts/auth/auth-card-layout.tsx
+++ b/resources/js/layouts/auth/auth-card-layout.tsx
@@ -13,7 +13,7 @@ export default function AuthCardLayout({
description?: string;
}>) {
return (
-
+
diff --git a/resources/js/layouts/auth/auth-simple-layout.tsx b/resources/js/layouts/auth/auth-simple-layout.tsx
index 428fd9cc7..6de3efcd8 100644
--- a/resources/js/layouts/auth/auth-simple-layout.tsx
+++ b/resources/js/layouts/auth/auth-simple-layout.tsx
@@ -10,7 +10,7 @@ interface AuthLayoutProps {
export default function AuthSimpleLayout({ children, title, description }: PropsWithChildren
) {
return (
-
+
@@ -23,7 +23,7 @@ export default function AuthSimpleLayout({ children, title, description }: Props
{title}
-
{description}
+
{description}
{children}
diff --git a/resources/js/layouts/auth/auth-split-layout.tsx b/resources/js/layouts/auth/auth-split-layout.tsx
index ddced1cde..03daf1c0d 100644
--- a/resources/js/layouts/auth/auth-split-layout.tsx
+++ b/resources/js/layouts/auth/auth-split-layout.tsx
@@ -13,7 +13,7 @@ export default function AuthSplitLayout({ children, title, description }: PropsW
return (
-
+
@@ -35,7 +35,7 @@ export default function AuthSplitLayout({ children, title, description }: PropsW
{title}
-
{description}
+
{description}
{children}
diff --git a/resources/js/pages/auth/forgot-password.tsx b/resources/js/pages/auth/forgot-password.tsx
index 51d4aa787..86d1b3069 100644
--- a/resources/js/pages/auth/forgot-password.tsx
+++ b/resources/js/pages/auth/forgot-password.tsx
@@ -53,7 +53,7 @@ export default function ForgotPassword({ status }: { status?: string }) {
-
+
Or, return to
log in
diff --git a/resources/js/pages/auth/login.tsx b/resources/js/pages/auth/login.tsx
index f0705e725..28f76f08b 100644
--- a/resources/js/pages/auth/login.tsx
+++ b/resources/js/pages/auth/login.tsx
@@ -96,7 +96,7 @@ export default function Login({ status, canResetPassword }: LoginProps) {
-
+
Don't have an account?{' '}
Sign up
diff --git a/resources/js/pages/auth/register.tsx b/resources/js/pages/auth/register.tsx
index 34d6801c1..6b0faa8c1 100644
--- a/resources/js/pages/auth/register.tsx
+++ b/resources/js/pages/auth/register.tsx
@@ -107,7 +107,7 @@ export default function Register() {
-
+
Already have an account?{' '}
Log in
diff --git a/resources/js/pages/dashboard.tsx b/resources/js/pages/dashboard.tsx
index 083954a43..d0168287e 100644
--- a/resources/js/pages/dashboard.tsx
+++ b/resources/js/pages/dashboard.tsx
@@ -16,17 +16,17 @@ export default function Dashboard() {
-
+
-
+
-
-
diff --git a/resources/js/pages/settings/profile.tsx b/resources/js/pages/settings/profile.tsx
index 7be605f06..3aeed3a7b 100644
--- a/resources/js/pages/settings/profile.tsx
+++ b/resources/js/pages/settings/profile.tsx
@@ -22,7 +22,7 @@ const breadcrumbs: BreadcrumbItem[] = [
type ProfileForm = {
name: string;
email: string;
-}
+};
export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail: boolean; status?: string }) {
const { auth } = usePage
().props;
@@ -84,7 +84,7 @@ export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail:
{mustVerifyEmail && auth.user.email_verified_at === null && (
-
+
Your email address is unverified.{' '}