Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const meta: Meta<typeof F0BigNumber> = {
},
},
},
tags: ["autodocs", "experimental"],
tags: ["autodocs", "stable"],
argTypes: {
value: {
control: "object",
Expand Down
5 changes: 1 addition & 4 deletions packages/react/src/components/F0BigNumber/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { withDataTestId } from "@/lib/data-testid"
import { experimentalComponent } from "@/lib/experimental"
export * from "./types"

import { F0BigNumber as F0BigNumberCmp } from "./F0BigNumber"

export const F0BigNumber = withDataTestId(
experimentalComponent<typeof F0BigNumberCmp>("F0BigNumber", F0BigNumberCmp)
)
export const F0BigNumber = withDataTestId(F0BigNumberCmp)
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { F0Heading } from "../index"
const meta = {
component: F0Heading,
title: "Heading",
tags: ["autodocs", "experimental"],
tags: ["autodocs", "stable"],
argTypes: {
Comment on lines 10 to 14
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file’s Storybook tags were updated from experimental → stable, but the PR title/description only mention promoting F0BigNumber. Please update the PR description to include this change (or split it into a separate PR) so reviewers/release notes aren’t surprised by the extra scope.

Copilot uses AI. Check for mistakes.
variant: {
options: ["heading", "heading-large"],
Expand Down
Loading