We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14d2d68 commit 158804cCopy full SHA for 158804c
src/modules/networks/routing-peers/NetworkRoutingPeerModal.tsx
@@ -110,7 +110,7 @@ function RoutingPeerModalContent({
110
});
111
112
const [masquerade, setMasquerade] = useState<boolean>(
113
- router?.masquerade || true,
+ router ? router.masquerade : true,
114
);
115
const [metric, setMetric] = useState(
116
router?.metric ? router.metric.toString() : "9999",
@@ -293,9 +293,7 @@ function RoutingPeerModalContent({
293
<Paragraph className={"text-sm mt-auto"}>
294
Learn more about
295
<InlineLink
296
- href={
297
- "https://docs.netbird.io/how-to/networks#routing-peers"
298
- }
+ href={"https://docs.netbird.io/how-to/networks#routing-peers"}
299
target={"_blank"}
300
>
301
Routing Peers
0 commit comments