From 7e5eec2e4fe826a79386ae89fb2ddfeb6e59f93b Mon Sep 17 00:00:00 2001 From: Jason Young <46612682+jyoung8607@users.noreply.github.com> Date: Mon, 6 Jun 2022 17:03:34 -0400 Subject: [PATCH] ui: fix prime ad storage duration (#24756) fix ui prime ad storage duration --- selfdrive/ui/qt/widgets/prime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/widgets/prime.cc b/selfdrive/ui/qt/widgets/prime.cc index 27d472535b..8a208bf3cf 100644 --- a/selfdrive/ui/qt/widgets/prime.cc +++ b/selfdrive/ui/qt/widgets/prime.cc @@ -198,7 +198,7 @@ PrimeAdWidget::PrimeAdWidget(QWidget* parent) : QFrame(parent) { main_layout->addWidget(features, 0, Qt::AlignBottom); main_layout->addSpacing(30); - QVector bullets = {"Remote access", "14 days of storage", "Developer perks"}; + QVector bullets = {"Remote access", "1 year of storage", "Developer perks"}; for (auto &b: bullets) { const QString check = " "; QLabel *l = new QLabel(check + b);