Skip to content

Commit

Permalink
Debug remaining bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
M1Al3x authored Sep 27, 2023
1 parent 4723bc0 commit 4fa92fa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions src/components/PreverbToolTip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, {useEffect, useState} from "react";
import { default as logo } from './info-circle-solid.svg';
import {Tooltip, OverlayTrigger, Button} from "react-bootstrap";
import {faVolumeUp, faInfoCircle, faBorderNone} from '@fortawesome/free-solid-svg-icons'
import {Link, Redirect} from "react-router-dom";
Expand Down Expand Up @@ -55,7 +54,6 @@ const PreverbToolTip = (props) => {
onMouseDown={(e)=> {e.preventDefault()}}
onMouseLeave={() => setPreverbShowTooltip(false)}
onMouseEnter={() => setPreverbShowTooltip(true)}
onClick={() => handleInfoLinkClick()}
data-cy="preverbButton">
<FontAwesomeIcon icon={faInfoCircle} size="xl" color="navy"/>
</Button>
Expand Down
7 changes: 0 additions & 7 deletions src/components/SearchSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,6 @@ const SearchSection = (props) => {
return [];
}
}
let handlePreverbMouseEnter = () => {
setPreverbShowTooltip(true);
};

let handlePreverbMouseLeave = () => {
setPreverbShowTooltip(false);
};
//Information BTN tooltip(Here is where the info is to be typed out)
let [settings, setSettings] = useState(JSON.parse(window.localStorage.getItem("settings")));
window.addEventListener("settings", () => {
Expand Down

0 comments on commit 4fa92fa

Please sign in to comment.