register sync-merge modal (#6846)

This commit is contained in:
James Gatz 2023-11-22 12:14:50 +01:00 committed by GitHub
parent 8d8560f025
commit 867567ad4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ import { RequestRenderErrorModal } from '../components/modals/request-render-err
import { ResponseDebugModal } from '../components/modals/response-debug-modal'; import { ResponseDebugModal } from '../components/modals/response-debug-modal';
import { SelectModal } from '../components/modals/select-modal'; import { SelectModal } from '../components/modals/select-modal';
import { SettingsModal } from '../components/modals/settings-modal'; import { SettingsModal } from '../components/modals/settings-modal';
import { SyncMergeModal } from '../components/modals/sync-merge-modal';
import { WrapperModal } from '../components/modals/wrapper-modal'; import { WrapperModal } from '../components/modals/wrapper-modal';
import { WorkspaceLoaderData } from './workspace'; import { WorkspaceLoaderData } from './workspace';
@ -83,6 +84,10 @@ const Modals: FC = () => {
ref={instance => registerModal(instance, 'AddKeyCombinationModal')} ref={instance => registerModal(instance, 'AddKeyCombinationModal')}
/> />
<SyncMergeModal
ref={instance => registerModal(instance, 'SyncMergeModal')}
/>
</ErrorBoundary> </ErrorBoundary>
</div> </div>
); );