Fix Gitea quality gate portability
Staging Backend Quality Gate / validate (pull_request) Failing after 19m39s
Staging Backend Quality Gate / publish (pull_request) Has been cancelled

This commit is contained in:
Jesse_Chen
2026-08-05 11:52:38 +08:00
parent b6fd860fb4
commit 7fe29dcf01
4 changed files with 39 additions and 3 deletions
+3 -1
View File
@@ -1,13 +1,15 @@
"use client";
import { useGSAP } from "@gsap/react";
import { gsap } from "gsap";
import gsapModule from "gsap";
import { useRef } from "react";
import { AgentActivityStatus } from "@/components/agent-activity-status";
import { ChatMessageContent } from "@/components/chat-message-content";
import type { ChatMessageView } from "@/lib/chat-message-view";
const gsap = (gsapModule as typeof gsapModule & { gsap?: typeof gsapModule }).gsap ?? gsapModule;
gsap.registerPlugin(useGSAP);
export function AgentAvatar() {