Skip to content

Commit e12ba18

Browse files
committed
fix(kubectl-ctx): remove unused import and correct pollInterval default to 60s
1 parent c33206b commit e12ba18

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

kubectl-ctx/Main.qml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import QtQuick
22
import Quickshell
33
import Quickshell.Io
44
import qs.Commons
5-
import qs.Services.UI
65

76
Item {
87
id: root
@@ -13,7 +12,7 @@ Item {
1312
property var defaults: pluginApi?.manifest?.metadata?.defaultSettings || ({})
1413

1514
readonly property string kubeconfigPath: cfg.kubeconfigPath ?? defaults.kubeconfigPath ?? ""
16-
readonly property int pollInterval: cfg.pollInterval ?? defaults.pollInterval ?? 30
15+
readonly property int pollInterval: cfg.pollInterval ?? defaults.pollInterval ?? 60
1716
readonly property bool showErrorBadge: cfg.showErrorBadge ?? defaults.showErrorBadge ?? true
1817
readonly property string terminal: cfg.terminal ?? defaults.terminal ?? ""
1918

0 commit comments

Comments
 (0)