From c19bb2fa879f4b2ba76584c9bf18ad59576c4208 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 7 Feb 2026 21:48:56 -0500 Subject: [PATCH] fix: use "Polaris" as plugin settings display name Changed from "headlamp-polaris-plugin" to "Polaris" in the registerPluginSettings call. This makes the plugin name appear cleanly in Settings > Plugins. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 0275edf..8c6a538 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -74,4 +74,4 @@ registerRoute({ ), }); -registerPluginSettings('headlamp-polaris-plugin', PolarisSettings, true); +registerPluginSettings('polaris', PolarisSettings, true);