Skip to content
Snippets Groups Projects
Commit 34512fba authored by Piotr Gawron's avatar Piotr Gawron
Browse files

fix types

parent dead0943
No related branches found
No related tags found
1 merge request!329Merge 18.0.5
Pipeline #98649 passed
...@@ -19,6 +19,7 @@ export const overviewImageLinkModel = z.object({ ...@@ -19,6 +19,7 @@ export const overviewImageLinkModel = z.object({
}); });
export const overviewImageLinkSearch = z.object({ export const overviewImageLinkSearch = z.object({
id: z.number(),
idObject: z.number(), idObject: z.number(),
polygon: z.array(positionSchema), polygon: z.array(positionSchema),
query: z.string(), query: z.string(),
......
...@@ -113,11 +113,6 @@ export const clearBioEntitiesReducer = (state: BioEntityContentsState): void => ...@@ -113,11 +113,6 @@ export const clearBioEntitiesReducer = (state: BioEntityContentsState): void =>
state.loading = 'idle'; state.loading = 'idle';
}; };
export const clearBioEntitiesReducer = (state: BioEntityContentsState): void => {
state.data = [];
state.loading = 'idle';
};
export const toggleIsContentTabOpenedReducer = ( export const toggleIsContentTabOpenedReducer = (
state: BioEntityContentsState, state: BioEntityContentsState,
action: PayloadAction<boolean>, action: PayloadAction<boolean>,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment