Remove CSP
This commit is contained in:
@ -16,14 +16,10 @@ Sentry.init({
|
||||
});
|
||||
|
||||
function ClientCacheProvider({ children }: { children: ReactNode }) {
|
||||
const nonce =
|
||||
document
|
||||
.querySelector("meta[name='style-nonce']")
|
||||
?.getAttribute("content") || undefined;
|
||||
const [cache, setCache] = useState(createEmotionCache(nonce));
|
||||
const [cache, setCache] = useState(createEmotionCache());
|
||||
|
||||
function reset() {
|
||||
setCache(createEmotionCache(nonce));
|
||||
setCache(createEmotionCache());
|
||||
}
|
||||
|
||||
return (
|
||||
|
Reference in New Issue
Block a user