a tool for shared writing and social publishing
0
fork

Configure Feed

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

a fix for messed up classnames in toolbar button

celine 315ef713 25dae7b8

+6 -5
+6 -5
components/Toolbar/index.tsx
··· 302 302 <button 303 303 disabled={props.disabled} 304 304 className={` 305 - roprops.className} 306 - 307 - ops.active 308 - "bg-border text-primary" 309 - props.disabled 305 + rounded-md active:bg-border active:text-primary 306 + ${props.className} 307 + ${ 308 + props.active 309 + ? "bg-border text-primary" 310 + : props.disabled 310 311 ? "text-border cursor-not-allowed" 311 312 : "text-secondary" 312 313 }