Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rickimoore committed Jun 19, 2024
1 parent 78d756a commit cab84e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SSELogProvider/SSELogProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const SSELogProvider: FC<SSELogWrapperProps> = React.memo(function ({ children,
const [, setTrigger] = useState(false)
const setBeaconNetworkError = useSetRecoilState(beaconNetworkError)
const setValidatorNetworkError = useSetRecoilState(validatorNetworkError)
const [intervalId, setIntervalId] = useState<NodeJS.Timer | undefined>(undefined)
const [intervalId, setIntervalId] = useState<any | undefined>(undefined)
const [isReady, setReady] = useState(false)

useEffect(() => {
Expand Down

0 comments on commit cab84e7

Please sign in to comment.