a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix duplicate button on mobile

+10 -8
+10 -8
app/lish/[did]/[publication]/dashboard/Actions.tsx
··· 33 33 <PublicationShareButton /> 34 34 <PublicationSettingsButton publication={props.publication} /> 35 35 <hr className="border-border-light" /> 36 - <Link 37 - href="/home" 38 - prefetch 39 - className="hover:no-underline" 40 - style={{ textDecorationLine: "none !important" }} 41 - > 42 - <ActionButton icon={<HomeSmall />} label="Go Home" /> 43 - </Link> 36 + <Media mobile={false}> 37 + <Link 38 + href="/home" 39 + prefetch 40 + className="hover:no-underline" 41 + style={{ textDecorationLine: "none !important" }} 42 + > 43 + <ActionButton icon={<HomeSmall />} label="Go Home" /> 44 + </Link> 45 + </Media> 44 46 </> 45 47 ); 46 48 };