frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

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

refactor: remove logging

serenity b6178468 eea6afdc

-1
-1
src/lib/facet/src/lib/conversion.ts
··· 224 224 225 225 export const rgbObjectToString = ({ r, g, b, a }: RgbColor) => { 226 226 const res = `rgba(${r.toString()}, ${g.toString()}, ${b.toString()}${a ? `, ${((a / 255) * 100).toString()}` : ""})`; 227 - console.log(res); 228 227 return res; 229 228 };