fix: corrige link do ticket no chat widget

Remove /dashboard do path do ticket.
Antes: /dashboard/tickets/{id}
Depois: /tickets/{id}

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
esdrasrenan 2025-12-07 17:26:03 -03:00
parent a0edaf8adb
commit 28598cb04d

View file

@ -504,7 +504,7 @@ export function ChatWidget() {
</div>
{activeSession && (
<a
href={`/dashboard/tickets/${activeTicketId}`}
href={`/tickets/${activeTicketId}`}
target="_blank"
rel="noopener noreferrer"
className="group flex items-center gap-1 text-xs text-slate-500 hover:text-slate-900 transition-colors"