Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/tui/screens/clean.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const (
func NewCleanScreen(ctx context.Context, client github.Client) *CleanScreen {
// Create spinner
s := spinner.New()
s.Spinner = spinner.Dot
s.Spinner = spinner.Moon
s.Style = tui.GetStyles().Spinner

// Create repo input
Expand Down
2 changes: 1 addition & 1 deletion internal/tui/screens/onboarding.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func WithStorage(storage *state.Storage) OnboardingOption {
// NewOnboarding creates a new onboarding screen
func NewOnboarding(ctx context.Context, opts ...OnboardingOption) *Onboarding {
s := spinner.New()
s.Spinner = spinner.Dot
s.Spinner = spinner.Moon
s.Style = tui.GetStyles().Spinner

o := &Onboarding{
Expand Down
2 changes: 1 addition & 1 deletion internal/tui/screens/sync_progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func NewSyncProgress(ctx context.Context, app *tui.App) *SyncProgressScreen {

// Create spinner
s := spinner.New()
s.Spinner = spinner.Dot
s.Spinner = spinner.Moon
s.Style = tui.GetStyles().Spinner

return &SyncProgressScreen{
Expand Down
2 changes: 1 addition & 1 deletion internal/tui/screens/sync_wizard.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ type SyncWizard struct {
func NewSyncWizard(ctx context.Context, app *tui.App) *SyncWizard {
// Initialize spinner
s := spinner.New()
s.Spinner = spinner.Dot
s.Spinner = spinner.Moon
s.Style = tui.GetStyles().Spinner

// Initialize progress bar
Expand Down