diff --git a/packages/ui-components/src/components/Bubble/Bubble.tsx b/packages/ui-components/src/components/Bubble/Bubble.tsx index 8561ee19..993e80c2 100644 --- a/packages/ui-components/src/components/Bubble/Bubble.tsx +++ b/packages/ui-components/src/components/Bubble/Bubble.tsx @@ -73,7 +73,7 @@ export const Bubble = ({ onClick={handleCopyToClipboard} disabled={copied} > - {copied ? : } + {copied ? : } )} diff --git a/packages/ui-components/src/components/Button/__tests__/ButtonIcon.test.tsx b/packages/ui-components/src/components/Button/__tests__/ButtonIcon.test.tsx index 8b09ffaa..8b191064 100644 --- a/packages/ui-components/src/components/Button/__tests__/ButtonIcon.test.tsx +++ b/packages/ui-components/src/components/Button/__tests__/ButtonIcon.test.tsx @@ -100,7 +100,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size small button icon with a label on the right", async () => { render( - + , ); const button = await screen.findByRole("button"); @@ -112,7 +112,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size small button icon with a label on the left", async () => { render( - + , ); const button = await screen.findByRole("button"); @@ -134,7 +134,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size medium button icon with a label on the right", async () => { render( - + , ); const button = await screen.findByRole("button"); @@ -146,7 +146,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size medium button icon with a label on the left", async () => { render( - + , ); const button = await screen.findByRole("button"); @@ -168,7 +168,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size large button icon with a label on the right", async () => { render( - + , ); const button = await screen.findByRole("button"); @@ -180,7 +180,7 @@ describe("ButtonIcon modifiers", () => { it("should render a size large button icon with a label on the left", async () => { render( - + , ); const button = await screen.findByRole("button");