From 649a270416d196772c9f3ef75124aa81a62417e3 Mon Sep 17 00:00:00 2001 From: rever-tecnologia Date: Thu, 18 Dec 2025 13:57:15 -0300 Subject: [PATCH] fix(desktop): remove parametro nao utilizado companyName MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- apps/desktop/src/components/DeactivationScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/components/DeactivationScreen.tsx b/apps/desktop/src/components/DeactivationScreen.tsx index f59f90e..4c08067 100644 --- a/apps/desktop/src/components/DeactivationScreen.tsx +++ b/apps/desktop/src/components/DeactivationScreen.tsx @@ -6,7 +6,7 @@ type DeactivationScreenProps = { onRetry?: () => Promise | void } -export function DeactivationScreen({ companyName, onRetry }: DeactivationScreenProps) { +export function DeactivationScreen({ onRetry }: DeactivationScreenProps) { const [isRetrying, setIsRetrying] = useState(false) const handleRetry = async () => {