diff --git a/poc.ts b/poc.ts
new file mode 100644
index 0000000000000000000000000000000000000000..958c0f3bfb71273bf262f56f3432ffeca89c2483
--- /dev/null
+++ b/poc.ts
@@ -0,0 +1,33 @@
+// scenario: user inputs multi values up to 7 separated by comma. Click search
+// goal: have data stored in redux to be used in multitab on search results
+
+import { Loading } from '@/types/loadingState';
+
+// 1: needs to validate number of imputs, dont let more then 7;
+// 2: get each of values to search for and send 4 queries for each of them (drugs, mirna, chemicals, bioEntity)
+// 3: save values to the store:
+
+/** Current store of bioEntity,drugs,chemicals,mirna  */
+
+type FetchDataState<T, T2 = undefined> = {
+  data: T | T2;
+  loading: Loading;
+  error: Error;
+};
+
+// proposed
+
+type MultiSearchData<T, T2 = undefined> = {
+  searchQuery: string; // it will allow us to use it in tabs, find desired values
+  data: T | undefined;
+  loading: Loading; // it will be possible to use it search tabs to show loading indicator
+  error: Error; //
+};
+
+type MultiFetchDataState<T> = {
+  data: MultiSearchData<T>[];
+  loading: Loading;
+  error: Error;
+};
+
+// possible problems: if later we want to add search query for pin it might be tricky to store values and access them. Unless we agree to add separate field just for it
diff --git a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.test.tsx b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.test.tsx
index 33254b839b51e2c4421930dad4ebd12de986851a..e870ed606d9edfd356f60403d6c9a34770e255d1 100644
--- a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.test.tsx
+++ b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.test.tsx
@@ -1,5 +1,4 @@
 import { StoreType } from '@/redux/store';
-import { useRouter } from 'next/router';
 import { getReduxWrapperWithStore } from '@/utils/testing/getReduxWrapperWithStore';
 import { fireEvent, render, screen } from '@testing-library/react';
 import { SearchBar } from './SearchBar.component';
@@ -19,14 +18,6 @@ const renderComponent = (): { store: StoreType } => {
   );
 };
 
-jest.mock('next/router', () => ({
-  useRouter: jest.fn(),
-}));
-
-(useRouter as jest.Mock).mockReturnValue({
-  query: {},
-});
-
 describe('SearchBar - component', () => {
   it('should let user type text', () => {
     renderComponent();
@@ -59,11 +50,4 @@ describe('SearchBar - component', () => {
 
     expect(input).toBeDisabled();
   });
-
-  it('should set initial search value to match searchValue query param', () => {
-    (useRouter as jest.Mock).mockReturnValue({
-      query: { searchValue: 'aspirin;nadh' },
-    });
-    renderComponent();
-  });
 });
diff --git a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
index b47a4bf5b2403b606a53a5d22f77e5c0416e3a13..431b4e5771da77415815ff0a4c77f9818dc90c24 100644
--- a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
+++ b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
@@ -5,9 +5,8 @@ import { useAppDispatch } from '@/redux/hooks/useAppDispatch';
 import { isPendingSearchStatusSelector } from '@/redux/search/search.selectors';
 import { getSearchData } from '@/redux/search/search.thunks';
 import Image from 'next/image';
-import { ChangeEvent, KeyboardEvent, useEffect, useState } from 'react';
+import { ChangeEvent, KeyboardEvent, useState } from 'react';
 import { useSelector } from 'react-redux';
-import { useRouter } from 'next/router';
 import { getSearchValuesArrayAndTrimToSeven } from './SearchBar.utils';
 
 const ENTER_KEY_CODE = 'Enter';
@@ -15,15 +14,9 @@ const ENTER_KEY_CODE = 'Enter';
 export const SearchBar = (): JSX.Element => {
   const isPendingSearchStatus = useSelector(isPendingSearchStatusSelector);
   const isDrawerOpen = useSelector(isDrawerOpenSelector);
+
   const [searchValue, setSearchValue] = useState<string>('');
   const dispatch = useAppDispatch();
-  const { query } = useRouter();
-
-  useEffect(() => {
-    if (!searchValue && query.searchValue) {
-      setSearchValue(String(query.searchValue));
-    }
-  }, [searchValue, query]);
 
   const openSearchDrawerIfClosed = (): void => {
     if (!isDrawerOpen) {
@@ -38,6 +31,7 @@ export const SearchBar = (): JSX.Element => {
     const searchValues = getSearchValuesArrayAndTrimToSeven(searchValue);
 
     dispatch(getSearchData(searchValues));
+    // setSearchQueryInRouter(searchValue);
     openSearchDrawerIfClosed();
   };
 
@@ -46,6 +40,7 @@ export const SearchBar = (): JSX.Element => {
 
     if (event.code === ENTER_KEY_CODE) {
       dispatch(getSearchData(searchValues));
+      // setSearchQueryInRouter(searchValue);
       openSearchDrawerIfClosed();
     }
   };
diff --git a/src/components/Map/Drawer/SearchDrawerWrapper/ResultsList/AccordionsDetails/AccordionsDetails.component.test.tsx b/src/components/Map/Drawer/SearchDrawerWrapper/ResultsList/AccordionsDetails/AccordionsDetails.component.test.tsx
index 86e82f936d3c329934fa0975cbcf58db136dffab..2f3c00b7a7e10e59098b8c5ea0d950de93fca5d2 100644
--- a/src/components/Map/Drawer/SearchDrawerWrapper/ResultsList/AccordionsDetails/AccordionsDetails.component.test.tsx
+++ b/src/components/Map/Drawer/SearchDrawerWrapper/ResultsList/AccordionsDetails/AccordionsDetails.component.test.tsx
@@ -37,12 +37,12 @@ describe('AccordionsDetails - component', () => {
 
     expect(screen.getByText(drugName, { exact: false })).toBeInTheDocument();
   });
-  it.skip('should display description of drug', () => {
+  it('should display description of drug', () => {
     renderComponent();
 
     const drugDescription = drugsFixture[0].description;
 
-    expect(screen.getByText(drugDescription || '', { exact: false })).toBeInTheDocument();
+    expect(screen.getByText(drugDescription, { exact: false })).toBeInTheDocument();
   });
   it('should display synonyms of drug', () => {
     renderComponent();
diff --git a/src/models/drugSchema.ts b/src/models/drugSchema.ts
index 17c54ddf05e462f718c39f82e37b682d9fa5e286..346dfa963dbb25a44781528dcb1a87a603587246 100644
--- a/src/models/drugSchema.ts
+++ b/src/models/drugSchema.ts
@@ -6,7 +6,7 @@ export const drugSchema = z.object({
   /** identifier of the chemical */
   id: z.string(),
   name: z.string(),
-  description: z.string().nullable(),
+  description: z.string(),
   /** list of synonyms  */
   synonyms: z.array(z.string()),
   brandNames: z.array(z.string()),
diff --git a/src/redux/root/init.thunks.ts b/src/redux/root/init.thunks.ts
index a627aefc7ec98a48c0f4fd5a4445116d272c9149..c91e96efa82dbbd6ab9d2dd628fb4ff5f8770728 100644
--- a/src/redux/root/init.thunks.ts
+++ b/src/redux/root/init.thunks.ts
@@ -1,4 +1,3 @@
-import { openSearchDrawer } from '@/redux/drawer/drawer.slice';
 import { createAsyncThunk } from '@reduxjs/toolkit';
 import { PROJECT_ID } from '@/constants';
 import { AppDispatch } from '@/redux/store';
@@ -13,7 +12,6 @@ import {
   initMapSizeAndModelId,
   initOpenedMaps,
 } from '../map/map.thunks';
-import { getSearchData } from '../search/search.thunks';
 
 interface InitializeAppParams {
   queryData: QueryData;
@@ -39,10 +37,4 @@ export const fetchInitialAppData = createAsyncThunk<
   ]);
   /** Create tabs for maps / submaps */
   dispatch(initOpenedMaps({ queryData }));
-
-  /** Trigger search */
-  if (queryData.searchValue) {
-    dispatch(getSearchData(queryData.searchValue));
-    dispatch(openSearchDrawer());
-  }
 });
diff --git a/src/redux/root/query.selectors.ts b/src/redux/root/query.selectors.ts
index 0439c5f84fd2df6cc0826814f2276909dc33dff3..e0c3d7850dc2b53a4140a9bf02c335c2c06637f3 100644
--- a/src/redux/root/query.selectors.ts
+++ b/src/redux/root/query.selectors.ts
@@ -1,13 +1,10 @@
 import { QueryDataParams } from '@/types/query';
 import { createSelector } from '@reduxjs/toolkit';
 import { mapDataSelector } from '../map/map.selectors';
-import { searchValueSelector } from '../search/search.selectors';
 
 export const queryDataParamsSelector = createSelector(
-  searchValueSelector,
   mapDataSelector,
-  (searchValue, { modelId, backgroundId, position }): QueryDataParams => ({
-    searchValue: searchValue.join(';'),
+  ({ modelId, backgroundId, position }): QueryDataParams => ({
     modelId,
     backgroundId,
     ...position.last,
diff --git a/src/types/query.ts b/src/types/query.ts
index cf67cf2f12ee7d218f19d6477ec7882a369b1588..bd9cb48cdd9983d0bde3e12c4b0bb63e2cceb6f3 100644
--- a/src/types/query.ts
+++ b/src/types/query.ts
@@ -1,14 +1,12 @@
 import { Point } from './map';
 
 export interface QueryData {
-  searchValue?: string[];
   modelId?: number;
   backgroundId?: number;
   initialPosition?: Partial<Point>;
 }
 
 export interface QueryDataParams {
-  searchValue: string;
   modelId?: number;
   backgroundId?: number;
   x?: number;
@@ -17,7 +15,6 @@ export interface QueryDataParams {
 }
 
 export interface QueryDataRouterParams {
-  searchValue?: string;
   modelId?: string;
   backgroundId?: string;
   x?: string;
diff --git a/src/utils/parseQueryToTypes.test.ts b/src/utils/parseQueryToTypes.test.ts
index d1e1597510da79515009e55a4441dfb79ccda094..8151e0c92e2ff939d747db75b3bc68d62f2ec2e0 100644
--- a/src/utils/parseQueryToTypes.test.ts
+++ b/src/utils/parseQueryToTypes.test.ts
@@ -4,33 +4,22 @@ describe('parseQueryToTypes', () => {
   it('should return valid data', () => {
     expect({}).toEqual({});
 
-    expect(parseQueryToTypes({ searchValue: 'nadh;aspirin' })).toEqual({
-      searchValue: ['nadh', 'aspirin'],
-      modelId: undefined,
-      backgroundId: undefined,
-      initialPosition: { x: undefined, y: undefined, z: undefined },
-    });
-
     expect(parseQueryToTypes({ modelId: '666' })).toEqual({
-      searchValue: undefined,
       modelId: 666,
       backgroundId: undefined,
       initialPosition: { x: undefined, y: undefined, z: undefined },
     });
     expect(parseQueryToTypes({ x: '2137' })).toEqual({
-      searchValue: undefined,
       modelId: undefined,
       backgroundId: undefined,
       initialPosition: { x: 2137, y: undefined, z: undefined },
     });
     expect(parseQueryToTypes({ y: '1372' })).toEqual({
-      searchValue: undefined,
       modelId: undefined,
       backgroundId: undefined,
       initialPosition: { x: undefined, y: 1372, z: undefined },
     });
     expect(parseQueryToTypes({ z: '3721' })).toEqual({
-      searchValue: undefined,
       modelId: undefined,
       backgroundId: undefined,
       initialPosition: { x: undefined, y: undefined, z: 3721 },
diff --git a/src/utils/parseQueryToTypes.ts b/src/utils/parseQueryToTypes.ts
index 4123eebff6e3a751596b53aa9cd601266d3bb9db..d1b3f297cb084fdc71c10e98798df7edbc5c084e 100644
--- a/src/utils/parseQueryToTypes.ts
+++ b/src/utils/parseQueryToTypes.ts
@@ -1,7 +1,6 @@
 import { QueryData, QueryDataRouterParams } from '@/types/query';
 
 export const parseQueryToTypes = (query: QueryDataRouterParams): QueryData => ({
-  searchValue: query.searchValue?.split(';'),
   modelId: Number(query.modelId) || undefined,
   backgroundId: Number(query.backgroundId) || undefined,
   initialPosition: {