Bramz
Bramz
I was thinking about duplicates in styles on my server side rendered app using emotion e.g.: ``` .css-hashHere { display: block; display: none; } ``` After searching the issues in...
I noticed that after initial render of the `ThemeColorProvider`, it was re-rendering.This MR prevents this re-render from taking place by populating initial color state with the localStorage cache state on...
The type definitions of the React Placeholder component were not user-friendly/stable. I ensured only one type was used and returned (`React.ReactElement`). ## Motivation Consistent types. No hacky type casting is...
I thought id just drop this here as a solution for those who need and as inspiration for the plugin author. It basically injects a script that will check if...
I didn't like having linted JS/TS outside of my `src` folder. Therefor I'm using the following config inside of `sm.json`: ``` { "apiEndpoint": "https://***.cdn.prismic.io/api/v2", "libraries": [ "@/src/slices" ], "_latest": "0.0.45",...
My container exposes multiple ports (one for websocket and one for webserver). The exposed port that is not the virtual port should be publicly reachable.
My store is created with or without redux-persist dynamically. It would be nice to disable storage creation errors when a store is initialized without using the redux-persist `persistedReducer` and/or preferably...