diff --git a/src/components/LinkPreview.tsx b/src/components/LinkPreview.tsx index 618de53f35e2e4a1624c3e840820ae25e73be05a..4d0b9da1fa764adcfcf1288c1c1c92baf218492b 100644 --- a/src/components/LinkPreview.tsx +++ b/src/components/LinkPreview.tsx @@ -119,7 +119,6 @@ const LinkPreview: React.FC<IProps> = ({ link }: IProps) => { const [showHSOptions, setShowHSOPtions] = useState(false); const hses = useHSs(link); - console.log(hses); if (!hses) { content = ( diff --git a/src/components/StyledCheckbox.tsx b/src/components/StyledCheckbox.tsx index cd39a375ad1853087ad9ef13d5460e55877e58ad..9450f4e0fd3e66db40b8a264faf2f403bf45bdba 100644 --- a/src/components/StyledCheckbox.tsx +++ b/src/components/StyledCheckbox.tsx @@ -32,7 +32,7 @@ const StyledCheckbox: React.FC<IProps> = ({ <input {...otherProps} type="checkbox" /> {/* Using the div to center the image */} <div className="styledCheckboxWrapper"> - <img src={tick} /> + <img src={tick} alt="" /> </div> {children} </label> diff --git a/src/components/Toggle.tsx b/src/components/Toggle.tsx index eba19521c8935ed5701f0379dd90840dcc6edf83..1e34d31f0edec91bc18d159b878a2cdcabad722e 100644 --- a/src/components/Toggle.tsx +++ b/src/components/Toggle.tsx @@ -28,7 +28,7 @@ const Toggle: React.FC<IProps> = ({ children, ...props }: IProps) => ( <label className="toggle"> {children} <input type="checkbox" {...props} /> - <img src={chevron} /> + <img src={chevron} alt="" /> </label> ); diff --git a/src/contexts/HSContext.ts b/src/contexts/HSContext.ts index c6b5201f07484607eb3d24960824aa4473f8b4df..e19ff6076976bc6a14476c7865c13cff81126311 100644 --- a/src/contexts/HSContext.ts +++ b/src/contexts/HSContext.ts @@ -68,8 +68,6 @@ export const INITIAL_STATE: State = { }; export const unpersistedReducer = (state: State, action: Action): State => { - console.log('reducing'); - console.log(action); switch (action.action) { case ActionType.SetAny: return {