a tool for shared writing and social publishing
0
fork

Configure Feed

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

ensure highlight-color-1 has alpha 1

+6 -6
+6 -6
components/Toolbar/HighlightToolbar.tsx
··· 275 275 > 276 276 <ColorPicker 277 277 label="Highlight 1" 278 - value={ 279 - color?.data.value === undefined 280 - ? undefined 281 - : highlight1Value 282 - } 283 - setValue={set("theme/highlight-1")} 278 + value={highlight1Value} 279 + setValue={(color) => { 280 + set("theme/highlight-1")( 281 + color.withChannelValue("alpha", 1), 282 + ); 283 + }} 284 284 thisPicker={"highlight-1"} 285 285 openPicker={openPicker} 286 286 setOpenPicker={setOpenPicker}