chore(portal): ocultar opção de sair para sessões do agente

This commit is contained in:
Esdras Renan 2025-10-12 04:53:24 -03:00
parent 53f4b73a32
commit 0007bc02e7

View file

@ -105,6 +105,7 @@ export function PortalShell({ children }: PortalShellProps) {
) : null} ) : null}
</div> </div>
</div> </div>
{!machineContext ? (
<Button <Button
size="sm" size="sm"
variant="outline" variant="outline"
@ -115,6 +116,7 @@ export function PortalShell({ children }: PortalShellProps) {
<LogOut className="size-4" /> <LogOut className="size-4" />
Sair Sair
</Button> </Button>
) : null}
</div> </div>
</div> </div>
</header> </header>