Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(spinner): remove unused member in model #142

Merged
merged 1 commit into from Apr 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 3 additions & 5 deletions spinner/spinner.go
Expand Up @@ -72,7 +72,6 @@ var (
// Model contains the state for the spinner. Use NewModel to create new models
// rather than using Model as a struct literal.
type Model struct {

// Spinner settings to use. See type Spinner.
Spinner Spinner

Expand All @@ -83,10 +82,9 @@ type Model struct {
// https://github.com/charmbracelet/lipgloss
Style lipgloss.Style

frame int
startTime time.Time
id int
tag int
frame int
id int
tag int
}

// ID returns the spinner's unique ID.
Expand Down