Skip to content
Snippets Groups Projects

Resolve "remove usage of old reaction endpoint"

Merged Piotr Gawron requested to merge 316-remove-usage-of-old-reaction-endpoint into development
All threads resolved!
11 files
+ 17
293
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -9,7 +9,7 @@ import { twMerge } from 'tailwind-merge';
import { FIRST_ARRAY_ELEMENT, SECOND_ARRAY_ELEMENT, ZERO } from '@/constants/common';
import { PluginsContextMenu } from '@/services/pluginsManager/pluginContextMenu/pluginsContextMenu';
import { BioEntity, Reaction } from '@/types/models';
import { BioEntity, NewReaction } from '@/types/models';
import { ClickCoordinates } from '@/services/pluginsManager/pluginContextMenu/pluginsContextMenu.types';
import { currentModelSelector } from '@/redux/models/models.selectors';
import { mapDataLastPositionSelector } from '@/redux/map/map.selectors';
@@ -44,7 +44,7 @@ export const ContextMenu = (): React.ReactNode => {
const modelId = model ? model.idObject : ZERO;
const handleCallback = (
callback: (coordinates: ClickCoordinates, element: BioEntity | Reaction | undefined) => void,
callback: (coordinates: ClickCoordinates, element: BioEntity | NewReaction | undefined) => void,
) => {
return () => {
dispatch(closeContextMenu());
Loading