From 0ffb9e853591152ff2060244b13d77e9ddc4fe79 Mon Sep 17 00:00:00 2001 From: "Theodor S. Midtlien" Date: Mon, 8 Jun 2026 19:03:04 +0200 Subject: [PATCH] Fix id assignment --- client/cmd/profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmd/profile.go b/client/cmd/profile.go index e0c5fc8db..89443d12b 100644 --- a/client/cmd/profile.go +++ b/client/cmd/profile.go @@ -167,7 +167,7 @@ func addProfileFunc(cmd *cobra.Command, args []string) error { if err != nil { return err } - id = profilemanager.ID(resp.Id) + id := profilemanager.ID(resp.Id) cmd.Printf("Profile added: %s %s\n", id.ShortID(), profilemanager.StripCtrlChars(profileName)) return nil }