From 06e2c19a87885ce5916d4af2b06a04d33fc72245 Mon Sep 17 00:00:00 2001 From: Andrew Alexander Date: Wed, 19 Feb 2025 15:28:16 -0500 Subject: [PATCH] Update old UI banner for Beta testing period --- .../kotlin/app/cash/backfila/ui/components/AlertUseOldUI.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service/src/main/kotlin/app/cash/backfila/ui/components/AlertUseOldUI.kt b/service/src/main/kotlin/app/cash/backfila/ui/components/AlertUseOldUI.kt index ca7a6d494..14fb979aa 100644 --- a/service/src/main/kotlin/app/cash/backfila/ui/components/AlertUseOldUI.kt +++ b/service/src/main/kotlin/app/cash/backfila/ui/components/AlertUseOldUI.kt @@ -1,7 +1,8 @@ package app.cash.backfila.ui.components import kotlinx.html.TagConsumer +import misk.tailwind.components.AlertInfo fun TagConsumer<*>.UseOldUIAlert() { - AlertError("The new Backfila UI is not ready yet. It has bugs and missing functionality. Please use the old UI for now.", "Go to Old UI", "/app/") + AlertInfo("The new Backfila UI is in Beta. Please report any bugs or missing functionality to #backfila-discuss. The old UI will remain available during the testing period.", "Go to Old UI", "/app/") }