Skip to content

Commit 82bd8de

Browse files
authored
fix: Remove stutter from "fetching {sdk name} SDK SDK" (#391)
Remove stutter from "fetching {sdk name} SDK SDK"
1 parent 881fd5a commit 82bd8de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/quickstart/show_sdk_instructions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package quickstart
22

33
import (
44
"fmt"
5-
"github.com/launchdarkly/sdk-meta/api/sdkmeta"
65

76
"github.com/charmbracelet/bubbles/help"
87
"github.com/charmbracelet/bubbles/key"
@@ -11,6 +10,7 @@ import (
1110
tea "github.com/charmbracelet/bubbletea"
1211
"github.com/charmbracelet/glamour"
1312
"github.com/charmbracelet/lipgloss"
13+
"github.com/launchdarkly/sdk-meta/api/sdkmeta"
1414

1515
"github.com/launchdarkly/ldcli/internal/environments"
1616
"github.com/launchdarkly/ldcli/internal/flags"
@@ -156,7 +156,7 @@ func (m showSDKInstructionsModel) View() string {
156156
}
157157

158158
if m.instructions == "" || m.environment == nil {
159-
return m.spinner.View() + fmt.Sprintf(" Fetching %s SDK instructions...\n", m.displayName) + footerView(m.help.View(m.helpKeys), nil)
159+
return m.spinner.View() + fmt.Sprintf(" Fetching %s instructions...\n", m.displayName) + footerView(m.help.View(m.helpKeys), nil)
160160
}
161161

162162
m.help.ShowAll = true

0 commit comments

Comments
 (0)