Brian Reynolds
Brian Reynolds
If the two Django installations are using different `SECRET_KEY`s, that might be causing the issue. It appears that data is being encrypted with the `CRYPTOGRAPHY_KEY`, but the data is being...
The likely fix is to encase all google fonts in quotes. This might cause some other issues with related components/processes, will have to do a bit of a dive on...
Hey thanks for the input, I hadn't considered company policies disallowing local storage on the browser. As of right now, a backend database holding user data is outside of the...
I do, along with some general UX upgrades. Unfortunately, that likely won't land on my plate until MUI v5 exits the pre-release stage.
Now that Material-UI has officially released V5, yes! Given my current bandwidth, I expect to start working on an update this weekend, and to complete it within about a month....
My apologies to everyone, and a big thanks to those offering to help (you guys/gals are the best). I've been navigating a change in jobs, and a few other things...
doing some digging into this myself. I'll see if I can fix it and submit a PR
It seems that when custom themes are passed in via `.storybook/stories.js`, only the object which specifies the MUI overrides are used: https://github.com/react-theming/storybook-addon-material-ui/blob/version-1/.storybook/stories.js#L27 ``` import { overridings as theme1 } from...
Removing `createMuiTheme()` on the default light/dark themes and adding `palette: { type: 'light' }` to the `lightBaseTheme` configuration did the following for me on a local build: 1. stopped the...
I think part of my issue overall is that I was using material-ui/core v4, whereas, from what I can tell, this repo only supports Material-ui v3 (though that doesn't appear...