Error rendering app - encountered unknown component SingleValueChart

When I debug the UI Kit compose “singlevalue chart”, it always showed this, but it can run several days ago.

I try to revert several commit and try another previous deployed app, also see this error

I already import it

import ForgeReconciler, {
  Text,
  Inline,
  Stack,
  Box,
  SingleValueChart,
  LineChart,
  PieChart,
  BarChart,
  HorizontalBarChart,
  StackBarChart,
  Select,
  Strong,
  useProductContext,
  Spinner,
  Icon
} from "@forge/react";
 ) : selectedVersion && releaseStatus ? (
            <>
              {/* 所有图表区块 */}
              <Inline space="space.400" spread="space-between">
                <Stack grow="fill">
                  <SingleValueChart
                    title={releaseStatus.totalIssues.title}
                    data={releaseStatus.totalIssues.data}
                    subtitle={releaseStatus.totalIssues.subtitle}
                    showBorder={true}
                  />
                </Stack>
                <Stack grow="fill">
                  <SingleValueChart
                    title={releaseStatus.resolvedIssues.title}
                    data={releaseStatus.resolvedIssues.data}
                    showBorder={true}
                  />
                </Stack>
                <Stack grow="fill">
                  <SingleValueChart
                    title={releaseStatus.issueTrend.title}
                    data={releaseStatus.issueTrend.data}
                    showBorder={true}
                  />
                </Stack>`
![image|690x239](upload://9bZ2vmZ2SyHAKZ69YeahymjCxri.png)


@CameliaGao Can you help to check from your end?