From 788dcf2c73896e7b4e4d9882faa67313a1692c3d Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Wed, 18 Sep 2024 09:21:11 -0400 Subject: [PATCH] Update warning message --- cli/packages/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/packages/cmd/root.go b/cli/packages/cmd/root.go index 1b66d9279..8fb160ad8 100644 --- a/cli/packages/cmd/root.go +++ b/cli/packages/cmd/root.go @@ -68,7 +68,7 @@ func init() { } else { usingFrom = "INFISICAL_TOKEN environment variable" } - util.PrintWarning(fmt.Sprintf("You are currently logged in, but the command will be using the token provided from the %s.", usingFrom)) + util.PrintWarning(fmt.Sprintf("Your logged-in session is being overwritten by the token provided from the %s", usingFrom)) } }