Skip to content

Commit 8ec6493

Browse files
committed
Adding a few more cleanups and fixes
1 parent 825de17 commit 8ec6493

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

resources/js/components/app-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BookOpenText, FolderGit2, LayoutDashboard, type LucideIcon } from "lucide-react"
1+
import { BookOpenText, FolderGit2, LayoutDashboard } from "lucide-react"
22
import { Link } from "@inertiajs/react"
33
import { NavMain } from "@/components/nav-main"
44
import { NavFooter } from "@/components/nav-footer"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export default function ForgotPassword({ status }: { status?: string }) {
4242
id="email"
4343
type="email"
4444
name="email"
45+
autoComplete="off"
4546
value={data.email}
4647
autoFocus
4748
onChange={(e) => setData('email', e.target.value)}

resources/js/pages/auth/login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default function Login({
114114
</div>
115115

116116
<div className="text-center text-sm">
117-
Don&apos;t have an account?{" "}
117+
Don't have an account?{" "}
118118
<Link
119119
href={route("register")}
120120
className="underline underline-offset-4"

0 commit comments

Comments
 (0)