fix: console warnings
parent
16529e049c
commit
d9fd9585ad
|
@ -18,7 +18,6 @@ const HeaderComponent = () => {
|
||||||
<Layouts.Header
|
<Layouts.Header
|
||||||
title={formatMessage({ id: 'config-sync.Header.Title' })}
|
title={formatMessage({ id: 'config-sync.Header.Title' })}
|
||||||
subtitle={formatMessage({ id: 'config-sync.Header.Description' })}
|
subtitle={formatMessage({ id: 'config-sync.Header.Description' })}
|
||||||
as="h2"
|
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
|
|
|
@ -30,17 +30,11 @@ export default {
|
||||||
{
|
{
|
||||||
intlLabel: {
|
intlLabel: {
|
||||||
id: `${pluginId}.Settings.Tool.Title`,
|
id: `${pluginId}.Settings.Tool.Title`,
|
||||||
defaultMessage: 'Tools',
|
defaultMessage: 'Interface',
|
||||||
},
|
},
|
||||||
id: 'config-sync-page',
|
id: 'config-sync-page',
|
||||||
to: `/settings/${pluginId}`,
|
to: `${pluginId}`,
|
||||||
Component: async () => {
|
Component: () => import('./containers/App'),
|
||||||
const component = await import(
|
|
||||||
/* webpackChunkName: "config-sync-settings-page" */ './containers/App'
|
|
||||||
);
|
|
||||||
|
|
||||||
return component;
|
|
||||||
},
|
|
||||||
permissions: pluginPermissions['settings'],
|
permissions: pluginPermissions['settings'],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue