diff --git a/nym-wallet/src/pages/bonding/node-settings/general-settings/InfoSettings.tsx b/nym-wallet/src/pages/bonding/node-settings/general-settings/InfoSettings.tsx
index 553912c52a..842380a063 100644
--- a/nym-wallet/src/pages/bonding/node-settings/general-settings/InfoSettings.tsx
+++ b/nym-wallet/src/pages/bonding/node-settings/general-settings/InfoSettings.tsx
@@ -1,21 +1,6 @@
import React, { useContext, useEffect, useState } from 'react';
import { Box, Button, Divider, Typography, TextField, Grid } from '@mui/material';
-const ModifiedTextField = ({ field }: { field: { id: string; title: string; value: string } }) => {
- return (
-
- {field.title}
- console.log(`Field ${field.id} has change`, e.target.value)}
- autoFocus
- fullWidth
- />
-
- );
-};
-
export const InfoSettings = ({ onSaveChanges }: { onSaveChanges: () => void }) => {
const [valueChanged, setValueChanged] = useState(false);
const [mixPortValue, setMixPortValue] = useState('1789');
@@ -34,20 +19,19 @@ export const InfoSettings = ({ onSaveChanges }: { onSaveChanges: () => void }) =
return (
-
+
- Port
- Change profit margin of your node
+ Port
+ (t.palette.mode === 'light' ? t.palette.nym.text.muted : 'text.primary'),
+ }}
+ >
+ Change profit margin of your node
+
-
+
{portSettings.map((item) => (
void }) =
-
-
- Host
- Lock wallet after certain time
-
-
+
+
+ Host
+ (t.palette.mode === 'light' ? t.palette.nym.text.muted : 'text.primary'),
+ }}
+ >
+ Lock wallet after certain time
+
+
+
{hostSettings.map((item) => (
-
+
+ console.log(`Field ${item.id} has change`, e.target.value)}
+ autoFocus
+ fullWidth
+ />
+
))}
-
-
+
+
-
-
- Version
- Lock wallet after certain time
-
-
+
+
+ Version
+ (t.palette.mode === 'light' ? t.palette.nym.text.muted : 'text.primary'),
+ }}
+ >
+ Lock wallet after certain time
+
+
+
{versionSettings.map((item) => (
-
+
+ console.log(`Field ${item.id} has change`, e.target.value)}
+ autoFocus
+ fullWidth
+ />
+
))}
-
-
+
+
-
+
+
+
);
diff --git a/nym-wallet/src/pages/bonding/node-settings/general-settings/index.tsx b/nym-wallet/src/pages/bonding/node-settings/general-settings/index.tsx
index 5abf66ba07..34c4a8c456 100644
--- a/nym-wallet/src/pages/bonding/node-settings/general-settings/index.tsx
+++ b/nym-wallet/src/pages/bonding/node-settings/general-settings/index.tsx
@@ -1,7 +1,6 @@
import React, { useContext, useEffect, useState } from 'react';
-import { Box, Button, Divider, Grid } from '@mui/material';
+import { Box, Button, Divider, Grid, withStyles } from '@mui/material';
import { InfoSettings } from './InfoSettings';
-import { ParametersSettings } from './ParametersSettings';
import { AppContext } from '../../../../context/main';
const nodeGeneralNav = ['Info', 'Parameters'];
@@ -22,7 +21,14 @@ export const NodeGeneralSettings = ({ onSaveChanges }: { onSaveChanges: () => vo
{nodeGeneralNav.map((item) => (