diff --git a/nym-wallet/src/components/TestMyNode/Overview/index.tsx b/nym-wallet/src/components/TestMyNode/Overview/index.tsx index 25bbdbadc0..2ebcf7180b 100644 --- a/nym-wallet/src/components/TestMyNode/Overview/index.tsx +++ b/nym-wallet/src/components/TestMyNode/Overview/index.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Button, Grid, Stack } from '@mui/material'; import testNode from 'src/assets/test-node-illustration.jpg'; -import { DescriptionItem } from '../components/overview'; +import { OverviewDescription } from '../components/OverviewDescription'; const content = [ { @@ -22,16 +22,16 @@ const content = [ ]; export const Overview = ({ onStartTest }: { onStartTest: () => void }) => ( - - + + - + - {content.map(DescriptionItem)} + {content.map(OverviewDescription)} - diff --git a/nym-wallet/src/components/TestMyNode/components/overview.tsx b/nym-wallet/src/components/TestMyNode/components/OverviewDescription.tsx similarity index 73% rename from nym-wallet/src/components/TestMyNode/components/overview.tsx rename to nym-wallet/src/components/TestMyNode/components/OverviewDescription.tsx index 973aec987b..19de926986 100644 --- a/nym-wallet/src/components/TestMyNode/components/overview.tsx +++ b/nym-wallet/src/components/TestMyNode/components/OverviewDescription.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Box, Typography } from '@mui/material'; -export const DescriptionItem = ({ title, description }: { title: string; description: string }) => ( +export const OverviewDescription = ({ title, description }: { title: string; description: string }) => ( {title}