fix(web): add cursor-pointer to BackLink button state

Quentin Gliech and Claude Opus 4.6 (1M context) created

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Change summary

webui2/src/components/ui/back-link.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

webui2/src/components/ui/back-link.tsx 🔗

@@ -17,7 +17,7 @@ export function BackLink({
     return (
       <button
         onClick={() => router.history.back()}
-        className="text-muted-foreground hover:text-foreground mb-4 flex items-center gap-1.5 text-sm"
+        className="text-muted-foreground hover:text-foreground mb-4 flex cursor-pointer items-center gap-1.5 text-sm"
       >
         <ArrowLeft className="size-3.5" />
         {children}