|
|
|
@ -11,7 +11,7 @@ import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
|
import { StateType } from '../state/reducer';
|
|
|
|
|
import { SessionIcon, SessionIconButton, SessionIconSize, SessionIconType } from './session/icon';
|
|
|
|
|
|
|
|
|
|
import { SessionWrapperModal } from '../components/session/SessionWrapperModal';
|
|
|
|
|
import { SessionWrapperModal } from './session/SessionWrapperModal';
|
|
|
|
|
|
|
|
|
|
import ip2country from 'ip2country';
|
|
|
|
|
import countryLookup from 'country-code-lookup';
|
|
|
|
@ -38,8 +38,8 @@ const OnionPathModalInner = () => {
|
|
|
|
|
const onionPath = useSelector(getFirstOnionPath);
|
|
|
|
|
// including the device and destination in calculation
|
|
|
|
|
const glowDuration = onionPath.length + 2;
|
|
|
|
|
|
|
|
|
|
if (!onionPath) {
|
|
|
|
|
console.warn('onionPath', onionPath);
|
|
|
|
|
if (!onionPath || onionPath.length === 0) {
|
|
|
|
|
return <SessionSpinner loading={true} />;
|
|
|
|
|
}
|
|
|
|
|
|