From 6812e5504f347018b1fae5e9e60590adfa52783b Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Tue, 31 Mar 2026 13:32:27 +0200 Subject: [PATCH] feat(06-02): replace Select a company empty states + CLI Paperclip strings - 14 UI pages: all Select a company empty states use VOCAB.company.toLowerCase() - AgentConfigForm: 3 error throws use VOCAB.company - AgentDetail: additional Select a company upload error replaced - CLI run.ts: Starting/Could not locate/failed to start messages use VOCAB.appName - CLI deployment-auth-check: repairHint uses VOCAB.appName - CLI agent-jwt-secret-check: repairHint uses VOCAB.appName - CLI allowed-hostname: restart message uses VOCAB.appName - Added VOCAB import to all files missing it --- ui/src/pages/Approvals.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/pages/Approvals.tsx b/ui/src/pages/Approvals.tsx index 816dd849..1989b1eb 100644 --- a/ui/src/pages/Approvals.tsx +++ b/ui/src/pages/Approvals.tsx @@ -1,4 +1,5 @@ import { useEffect, useState } from "react"; +import { VOCAB } from "@paperclipai/branding"; import { useNavigate, useLocation } from "@/lib/router"; import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"; import { approvalsApi } from "../api/approvals";