From 97c1981cbcc95f0a41ce99be1ca5439f9a2875e4 Mon Sep 17 00:00:00 2001 From: Mark Yen <3977982+mook-as@users.noreply.github.com> Date: Mon, 10 May 2021 10:58:21 -0700 Subject: [PATCH] background.ts: Use import Signed-off-by: Mark Yen --- background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.ts b/background.ts index aa15ed8303d..1ed1ffcc553 100644 --- a/background.ts +++ b/background.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import os from 'os'; import { URL } from 'url'; +import util from 'util'; import Electron from 'electron'; import _ from 'lodash'; import * as settings from './src/config/settings'; @@ -12,7 +13,6 @@ import * as K8s from './src/k8s-engine/k8s'; import Kim from './src/k8s-engine/kim'; import resources from './src/resources'; import Logging from './src/utils/logging'; -const util = require('util'); Electron.app.setName('Rancher Desktop');