diff --git a/src/components/NetworkLink/NetworkLink.tsx b/src/components/NetworkLink/NetworkLink.tsx
index 1505bcd75..ac042a280 100644
--- a/src/components/NetworkLink/NetworkLink.tsx
+++ b/src/components/NetworkLink/NetworkLink.tsx
@@ -9,6 +9,7 @@ export const NetworkLink = ({
to,
children,
preventScrollReset = false,
+ 'data-testid': dataTestId,
...rest
}: NetworkLinkPropsType) => {
const { id: activeNetworkId } = useSelector(activeNetworkSelector);
@@ -32,7 +33,11 @@ export const NetworkLink = ({
};
return (
-
+
{children}
);