Prettier format pending files

This commit is contained in:
Builder.io 2025-10-19 01:18:18 +00:00
parent e6c82c8c2a
commit 247f711755

View file

@ -100,20 +100,26 @@ export default function MentorApply() {
<CardHeader>
<CardTitle>Sign in required</CardTitle>
<CardDescription>
Sign in to create your mentor profile and start receiving requests.
Sign in to create your mentor profile and start receiving
requests.
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex gap-3">
<Button
onClick={() => {
const next = encodeURIComponent(location.pathname + location.search);
const next = encodeURIComponent(
location.pathname + location.search,
);
navigate(`/login?next=${next}`);
}}
>
Sign in
</Button>
<Button variant="outline" onClick={() => navigate("/community#mentorship")}>
<Button
variant="outline"
onClick={() => navigate("/community#mentorship")}
>
Back to directory
</Button>
</div>