visuddhinanda 2 rokov pred
rodič
commit
e201727e45

+ 8 - 10
dashboard/src/pages/studio/anthology/index.tsx

@@ -7,16 +7,14 @@ import { styleStudioContent } from "../style";
 const { Content } = Layout;
 const { Content } = Layout;
 
 
 const Widget = () => {
 const Widget = () => {
-	return (
-		<Layout>
-			<Layout>
-				<LeftSider selectedKeys="anthology" />
-				<Content style={styleStudioContent}>
-					<Outlet />
-				</Content>
-			</Layout>
-		</Layout>
-	);
+  return (
+    <Layout>
+      <LeftSider selectedKeys="anthology" />
+      <Content style={styleStudioContent}>
+        <Outlet />
+      </Content>
+    </Layout>
+  );
 };
 };
 
 
 export default Widget;
 export default Widget;