diff --git a/framework/python/src/net_orc/ip_control.py b/framework/python/src/net_orc/ip_control.py index fdd162a29..abefe6b09 100644 --- a/framework/python/src/net_orc/ip_control.py +++ b/framework/python/src/net_orc/ip_control.py @@ -12,7 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. """IP Control Module""" -import subprocess import psutil import typing as t from common import logger diff --git a/modules/ui/src/app/app.store.spec.ts b/modules/ui/src/app/app.store.spec.ts index c2110f81f..7d114e8be 100644 --- a/modules/ui/src/app/app.store.spec.ts +++ b/modules/ui/src/app/app.store.spec.ts @@ -165,7 +165,7 @@ describe('AppStore', () => { isMenuOpen: true, interfaces: {}, settingMissedError: null, - hasInternetConnection: true, + hasInternetConnection: null, }); done(); }); diff --git a/modules/ui/src/app/app.store.ts b/modules/ui/src/app/app.store.ts index f7ab8e7fc..3584ec8d1 100644 --- a/modules/ui/src/app/app.store.ts +++ b/modules/ui/src/app/app.store.ts @@ -250,7 +250,7 @@ export class AppStore extends ComponentStore { consentShown: sessionStorage.getItem(CONSENT_SHOWN_KEY) !== null, isStatusLoaded: false, systemStatus: null, - hasInternetConnection: true, + hasInternetConnection: null, }); } } diff --git a/modules/ui/src/app/components/wifi/wifi.component.html b/modules/ui/src/app/components/wifi/wifi.component.html index 913112b31..c93d05f7e 100644 --- a/modules/ui/src/app/components/wifi/wifi.component.html +++ b/modules/ui/src/app/components/wifi/wifi.component.html @@ -16,9 +16,9 @@