@antv/dumi-theme-antv 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/layout.js +0 -1
- package/package.json +1 -1
- package/src/layout.tsx +0 -1
package/es/layout.js
CHANGED
|
@@ -162,7 +162,6 @@ var Layout = function Layout(_ref) {
|
|
|
162
162
|
meta = _processRedirect.meta,
|
|
163
163
|
isDirect = _processRedirect.isDirect;
|
|
164
164
|
|
|
165
|
-
console.log('Context', Context, 'calculate meta', meta);
|
|
166
165
|
var repoUrl = repository.url,
|
|
167
166
|
branch = repository.branch,
|
|
168
167
|
platform = repository.platform;
|
package/package.json
CHANGED
package/src/layout.tsx
CHANGED
|
@@ -121,7 +121,6 @@ const Layout: React.FC<IRouteComponentProps> = ({ children, location }) => {
|
|
|
121
121
|
} = Context;
|
|
122
122
|
|
|
123
123
|
const { meta, isDirect } = processRedirect(Context, location);
|
|
124
|
-
console.log('Context', Context, 'calculate meta', meta);
|
|
125
124
|
const { url: repoUrl, branch, platform } = repository;
|
|
126
125
|
const [menuCollapsed, setMenuCollapsed] = useState<boolean>(true);
|
|
127
126
|
const isSiteMode = mode === 'site';
|