diff --git a/src/commands/commands.go b/src/commands/commands.go index 7b88d33..228b594 100644 --- a/src/commands/commands.go +++ b/src/commands/commands.go @@ -591,7 +591,6 @@ func RefillRadio(ctx *gctx.Context, client *spotify.Client) error { trackGroups = []spotify.ID{} } trackGroups = append(trackGroups, item) - _, err = db.QueryContext(ctx, fmt.Sprintf("DELETE FROM radio WHERE id='%s'", string(item))) if err != nil { fmt.Println(err.Error()) return err diff --git a/src/tui/main.go b/src/tui/main.go index db1c425..9b2ef8a 100644 --- a/src/tui/main.go +++ b/src/tui/main.go @@ -19,7 +19,7 @@ import ( var ( P *tea.Program - DocStyle = lipgloss.NewStyle().Margin(0, 2) + DocStyle = lipgloss.NewStyle().Margin(0, 2).Border(lipgloss.DoubleBorder(), true, true, true, true) currentlyPlaying *spotify.CurrentlyPlaying playbackContext string main_updates chan *mainModel