fix const

This commit is contained in:
srgooglo 2022-09-29 21:42:57 +02:00
parent a1d251790c
commit 92afab4019

View File

@ -87,7 +87,7 @@ export default class Layout extends React.Component {
} }
setLayout = (layout) => { setLayout = (layout) => {
if (typeof LayoutRenders[layout] === "function") { if (typeof Layouts[layout] === "function") {
return this.setState({ return this.setState({
layoutType: layout, layoutType: layout,
}) })