fix: console warnings

pull/157/head
Boaz Poolman 2024-11-06 19:58:20 +01:00
parent 16529e049c
commit d9fd9585ad
2 changed files with 3 additions and 10 deletions

View File

@ -18,7 +18,6 @@ const HeaderComponent = () => {
<Layouts.Header
title={formatMessage({ id: 'config-sync.Header.Title' })}
subtitle={formatMessage({ id: 'config-sync.Header.Description' })}
as="h2"
/>
</Box>
);

View File

@ -30,17 +30,11 @@ export default {
{
intlLabel: {
id: `${pluginId}.Settings.Tool.Title`,
defaultMessage: 'Tools',
defaultMessage: 'Interface',
},
id: 'config-sync-page',
to: `/settings/${pluginId}`,
Component: async () => {
const component = await import(
/* webpackChunkName: "config-sync-settings-page" */ './containers/App'
);
return component;
},
to: `${pluginId}`,
Component: () => import('./containers/App'),
permissions: pluginPermissions['settings'],
},
],