aboutsummaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorAnders Betts <anders.betts@gmail.com>2026-09-18 13:39:17 +0200
committerAnders Betts <anders.betts@gmail.com>2026-09-18 13:39:17 +0200
commit9d80112d73fed23907eac6640aff3914c38c0a49 (patch)
tree76fd324a3c6cb7320d03c8b93e276a3e86a2b67c /clients
parent6858d11a5b5fe08bc6fef19ed861cf56e63591e7 (diff)
downloadbokf-9d80112d73fed23907eac6640aff3914c38c0a49.tar.gz
bokf-9d80112d73fed23907eac6640aff3914c38c0a49.zip
bokftui: drop the redundant fiscal-year label from the status linev0.1.25
Diffstat (limited to 'clients')
-rw-r--r--clients/bokftui.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/clients/bokftui.c b/clients/bokftui.c
index 10824bf..1662c87 100644
--- a/clients/bokftui.c
+++ b/clients/bokftui.c
@@ -1004,9 +1004,8 @@ static void app_refresh_context(struct app *a)
static void update_status(struct app *a)
{
- snprintf(g_status, sizeof g_status, "%s | %s %s - %s | %s | %s",
- a->org_name, a->fy_label, a->fy_start, a->fy_end, a->role,
- a->username);
+ snprintf(g_status, sizeof g_status, "%s | %s - %s | %s | %s",
+ a->org_name, a->fy_start, a->fy_end, a->role, a->username);
}