|
|
|
@ -56,8 +56,10 @@ const OnionPathModalInner = () => {
|
|
|
|
|
<>
|
|
|
|
|
<p className="onion__description">{window.i18n('onionPathIndicatorDescription')}</p>
|
|
|
|
|
<div className="onion__node-list">
|
|
|
|
|
<div className="onion__vertical-line" />
|
|
|
|
|
{nodes.map((snode: Snode | any, index: number) => {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<OnionNodeStatusLight
|
|
|
|
|
glowDuration={glowDuration}
|
|
|
|
|
glowStartDelay={index}
|
|
|
|
@ -65,6 +67,7 @@ const OnionPathModalInner = () => {
|
|
|
|
|
snode={snode}
|
|
|
|
|
key={index}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|