tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
294
fork
atom
a tool for shared writing and social publishing
294
fork
atom
overview
issues
31
pulls
pipelines
whoops couple typos
cozylittle.house
5 days ago
a1d0a996
53267f9d
+5
-4
2 changed files
expand all
collapse all
unified
split
components
Subscribe
EmailSubscribeSuccess.tsx
ManageSubscribe.tsx
+4
-1
components/Subscribe/EmailSubscribeSuccess.tsx
···
1
1
"use client";
2
2
+
3
3
+
import { LinkHandle } from "./HandleSubscribe";
4
4
+
2
5
export const EmailSubscribeSuccess = (props: {
3
6
email: string | undefined;
4
7
handle: string | undefined;
···
11
14
{!props.handle && (
12
15
<>
13
16
<hr className="my-4 border-border-light" />
14
14
-
<HandleLink />
17
17
+
<LinkHandle />
15
18
</>
16
19
)}
17
20
</div>
+1
-3
components/Subscribe/ManageSubscribe.tsx
···
43
43
{props.user.handle && (
44
44
<div className={prefClassName}>
45
45
<div className="flex flex-col leading-snug">
46
46
-
Linked Handle{" "}
47
47
-
{props.user.handle}
48
48
-
</p>
46
46
+
Linked Handle {props.user.handle}
49
47
</div>
50
48
</div>
51
49
)}