fix e2e walkthrough test failures

pull/1671/head
Joseph Izang 3 years ago
parent 17153e1a26
commit 3a51c5a719
  1. 5
      libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.tsx

@ -4,7 +4,8 @@ import React, {
Fragment,
useEffect,
useReducer,
useRef
useRef,
useState
} from 'react'
import './remix-ui-vertical-icons-panel.css'
@ -24,7 +25,7 @@ export function RemixUiVerticalIconsPanel ({
}: RemixUiVerticalIconsPanelProps) {
const scrollableRef = useRef<any>()
const iconPanelRef = useRef<any>()
const udappPanelRef = useRef<any>()
// const [first] = useState(localStorage.getItem('firstTime'))
function onThemeChanged (themeType: any) {
const invert = themeType === 'dark' ? 1 : 0

Loading…
Cancel
Save