tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
remove link to bluesky thing
awarm.space
11 months ago
8bfe7446
d341be6e
+1
-16
2 changed files
expand all
collapse all
unified
split
app
home
AccountSettings.tsx
components
ShareOptions
PublicationOptions.tsx
-8
app/home/AccountSettings.tsx
···
21
21
}
22
22
>
23
23
<MenuItem
24
24
-
onSelect={() => {
25
25
-
//I guess redirect them to the bluesky oauth endpoint?
26
26
-
}}
27
27
-
>
28
28
-
Link to Bluesky
29
29
-
</MenuItem>
30
30
-
o
31
31
-
<MenuItem
32
24
onSelect={async () => {
33
25
await logout();
34
26
mutate("identity");
+1
-8
components/ShareOptions/PublicationOptions.tsx
···
35
35
asChild
36
36
trigger={<ButtonPrimary className="">Publish</ButtonPrimary>}
37
37
>
38
38
-
<div className="publishMenu w-96 flex flex-col gap-3">
38
38
+
<div className="publishMenu w-72 flex flex-col gap-3">
39
39
{state.state === "default" ? (
40
40
<>
41
41
<div className="w-full flex flex-col">
···
64
64
});
65
65
}}
66
66
>
67
67
-
<InputWithLabel
68
68
-
label="Title"
69
69
-
value={titleValue}
70
70
-
onChange={(e) => {
71
71
-
setTitleValue(e.currentTarget.value);
72
72
-
}}
73
73
-
/>
74
67
<InputWithLabel
75
68
textarea
76
69
rows={3}