From 7e2d266a9af88f686e12efebed66e9fa4b6588b2 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 26 Aug 2025 09:13:22 +0200 Subject: [PATCH] Don't think the selector looks quite right, but the remover does --- bin/omarchy-webapp-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-webapp-remove b/bin/omarchy-webapp-remove index 07e1a333..34f4c99f 100755 --- a/bin/omarchy-webapp-remove +++ b/bin/omarchy-webapp-remove @@ -14,7 +14,7 @@ if [ "$#" -eq 0 ]; then if ((${#WEB_APPS[@]})); then IFS=$'\n' SORTED_WEB_APPS=($(sort <<<"${WEB_APPS[*]}")) unset IFS - APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." --selected-prefix="✗ " --cursor-prefix=" " "${SORTED_WEB_APPS[@]}") + APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." --selected-prefix="✗ " "${SORTED_WEB_APPS[@]}") else echo "No web apps to remove." exit 1