From 2fa47773677eb5d2c7420d4e6624bb3425c0ccca Mon Sep 17 00:00:00 2001 From: Radu Mojic Date: Mon, 6 Nov 2023 17:18:34 +0200 Subject: [PATCH] updated the data-testid on the NetworkLink Component --- src/components/NetworkLink/NetworkLink.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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} );