diff --git a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
index 3256b02fba979d2b0cde9b55f03e36d5acf590f4..128d5b2365f02947d0190760654c736b8dbc0c50 100644
--- a/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
+++ b/src/components/FunctionalArea/TopBar/SearchBar/SearchBar.component.tsx
@@ -41,8 +41,6 @@ export const SearchBar = (): JSX.Element => {
 
   const clearSearchValueFromClearedState = useCallback((): void => {
     if (searchValueState.length === ONE && searchValueState[ZERO] === '') {
-      // eslint-disable-next-line no-console
-      console.log('x');
       setSearchValue('');
     }
   }, [searchValueState]);
diff --git a/src/components/Map/Legend/Legend.component.tsx b/src/components/Map/Legend/Legend.component.tsx
index e515483a6cd8fc808a079434eae82c2e92ee3beb..a5823f35ac74e8fdd691ced2ed71d0f853c750c0 100644
--- a/src/components/Map/Legend/Legend.component.tsx
+++ b/src/components/Map/Legend/Legend.component.tsx
@@ -19,7 +19,7 @@ export const Legend: React.FC = () => {
   return (
     <div
       className={twMerge(
-        'absolute bottom-0 left-[88px] z-10 w-[calc(100%-88px)] -translate-y-[-100%] transform border border-divide bg-white-pearl text-font-500 transition-all duration-500',
+        'absolute bottom-0 left-[88px] z-30 w-[calc(100%-88px)] -translate-y-[-100%] transform border border-divide bg-white-pearl text-font-500 transition-all duration-500',
         isOpen && 'translate-y-0',
       )}
       role={LEGEND_ROLE}