a tool for shared writing and social publishing

whoops couple typos

+5 -4
+4 -1
components/Subscribe/EmailSubscribeSuccess.tsx
··· 1 1 "use client"; 2 + 3 + import { LinkHandle } from "./HandleSubscribe"; 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 - <HandleLink /> 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 - Linked Handle{" "} 47 - {props.user.handle} 48 - </p> 46 + Linked Handle {props.user.handle} 49 47 </div> 50 48 </div> 51 49 )}