Fix pages not rendering
This commit is contained in:
parent
5173f1f7e8
commit
89b18cbcac
1 changed files with 1 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Can from '@/components/elements/Can';
|
import Can from '@/components/elements/Can';
|
||||||
import NotFound from '@/components/screens/NotFound';
|
|
||||||
import ScreenBlock from '@/components/screens/ScreenBlock';
|
import ScreenBlock from '@/components/screens/ScreenBlock';
|
||||||
|
|
||||||
const requireServerPermission = (Component: React.ComponentType<any>, permissions: string | string[]) => {
|
const requireServerPermission = (Component: React.ComponentType<any>, permissions: string | string[]) => {
|
||||||
|
@ -17,7 +16,7 @@ const requireServerPermission = (Component: React.ComponentType<any>, permission
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Component/>
|
<Component {...this.props}/>
|
||||||
</Can>
|
</Can>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue