a tool for shared writing and social publishing

remove link to bluesky thing

+1 -16
-8
app/home/AccountSettings.tsx
··· 21 21 } 22 22 > 23 23 <MenuItem 24 - onSelect={() => { 25 - //I guess redirect them to the bluesky oauth endpoint? 26 - }} 27 - > 28 - Link to Bluesky 29 - </MenuItem> 30 - o 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 - <div className="publishMenu w-96 flex flex-col gap-3"> 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 - <InputWithLabel 68 - label="Title" 69 - value={titleValue} 70 - onChange={(e) => { 71 - setTitleValue(e.currentTarget.value); 72 - }} 73 - /> 74 67 <InputWithLabel 75 68 textarea 76 69 rows={3}