Fix copy-pasta errors

Thanks CoPilot!
This commit is contained in:
Marc Brooks 2025-10-17 20:26:14 -05:00
parent 3391fa6180
commit e3af69815b
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
1 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ export default function SettingsNetworkRoute() {
});
}
if (dirty.ipv4_static?.gateway) {
if (dirty.ipv6_static?.gateway) {
changes.push({
label: m.network_ipv6_gateway(),
from: initialSettingsRef.current?.ipv6_static?.gateway as string,
@ -273,7 +273,7 @@ export default function SettingsNetworkRoute() {
changes.push({
label: m.network_ipv6_dns(),
from: initialSettingsRef.current?.ipv6_static?.dns.join(", ").toString() ?? "",
to: data.ipv4_static?.dns.join(", ").toString() ?? "",
to: data.ipv6_static?.dns.join(", ").toString() ?? "",
});
}