diff --git a/cmd/login.go b/cmd/login.go index dc03f17..9999b57 100644 --- a/cmd/login.go +++ b/cmd/login.go @@ -217,7 +217,7 @@ type Config struct { ExpiresAt time.Time `json:"expires_at,omitempty"` } -const DefaultAPIURL = "https://api.thundercompute.com:8443" +const DefaultAPIURL = "https://dev-staging.thundercompute.com:8443" func getAPIURL() string { if envURL := os.Getenv("TNR_API_URL"); envURL != "" { diff --git a/cmd/snapshot_create.go b/cmd/snapshot_create.go index 6cd43de..85268bc 100644 --- a/cmd/snapshot_create.go +++ b/cmd/snapshot_create.go @@ -147,11 +147,6 @@ func (m snapshotCreateProgressModel) View() string { content := lipgloss.JoinVertical(lipgloss.Left, lines...) result := "\n" + boxStyle.Render(content) + "\n\n" - // Add beta notice - warningStyle := lipgloss.NewStyle().Foreground(lipgloss.Color(theme.WarningColor)).Width(80) - betaNotice := "ℹ Snapshots are currently in beta. Please share feedback with us on Discord (https://discord.gg/nwuETS9jJK) or by emailing support@thundercompute.com" - result += warningStyle.Render(betaNotice) + "\n\n" - return result } diff --git a/cmd/snapshot_list.go b/cmd/snapshot_list.go index af03678..53b5e4b 100644 --- a/cmd/snapshot_list.go +++ b/cmd/snapshot_list.go @@ -77,11 +77,6 @@ func runSnapshotList() error { // Render table renderSnapshotTable(snapshots) - // Show beta notice - fmt.Println() - betaNotice := "ℹ Snapshots are currently in beta. Please share feedback with us on Discord (https://discord.gg/nwuETS9jJK) or by emailing support@thundercompute.com" - fmt.Println(tui.WarningStyle().Render(betaNotice)) - return nil } diff --git a/tui/snapshot_create.go b/tui/snapshot_create.go index 309bc6b..cf39947 100644 --- a/tui/snapshot_create.go +++ b/tui/snapshot_create.go @@ -281,11 +281,6 @@ func (m snapshotCreateModel) View() string { var s strings.Builder s.WriteString("\n") s.WriteString(m.styles.title.Render("⚡ Create Snapshot")) - s.WriteString("\n") - - // Beta notice - betaNotice := "ℹ Snapshots are currently in beta. Please share feedback with us on Discord (https://discord.gg/nwuETS9jJK) or by emailing support@thundercompute.com" - s.WriteString(WarningStyle().Width(80).Render(betaNotice)) s.WriteString("\n\n") progressSteps := []string{"Instance", "Name", "Confirm"} diff --git a/tui/snapshot_delete.go b/tui/snapshot_delete.go index c521db2..5c879be 100644 --- a/tui/snapshot_delete.go +++ b/tui/snapshot_delete.go @@ -139,11 +139,6 @@ func (m snapshotDeleteModel) View() string { var s strings.Builder s.WriteString(m.styles.title.Render("⚡ Delete Snapshot")) - s.WriteString("\n") - - // Beta notice - betaNotice := "ℹ Snapshots are currently in beta. Please share feedback with us on Discord (https://discord.gg/nwuETS9jJK) or by emailing support@thundercompute.com" - s.WriteString(WarningStyle().Width(80).Render(betaNotice)) s.WriteString("\n\n") switch m.step {