Prettier format pending files
This commit is contained in:
parent
e6c82c8c2a
commit
247f711755
1 changed files with 9 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue