|
@@ -18,11 +18,14 @@ export const NoLoginLayout = ({
|
|
|
}: Props): JSX.Element => {
|
|
}: Props): JSX.Element => {
|
|
|
|
|
|
|
|
const { data: appTitle } = useAppTitle();
|
|
const { data: appTitle } = useAppTitle();
|
|
|
|
|
+
|
|
|
|
|
+ const classNames: string[] = [''];
|
|
|
if (className != null) {
|
|
if (className != null) {
|
|
|
classNames.push(className);
|
|
classNames.push(className);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return (
|
|
return (
|
|
|
- <RawLayout className={`nologin ${commonStyles.nologin}`}>
|
|
|
|
|
|
|
+ <RawLayout className={`nologin ${commonStyles.nologin} ${classNames}`}>
|
|
|
<div className="page-wrapper">
|
|
<div className="page-wrapper">
|
|
|
<div className="main container-fluid">
|
|
<div className="main container-fluid">
|
|
|
|
|
|