Skip to content

chore: update website dev deps#4287

Merged
JamesHenry merged 2 commits intomainfrom
website-deps
Feb 28, 2026
Merged

chore: update website dev deps#4287
JamesHenry merged 2 commits intomainfrom
website-deps

Conversation

@JamesHenry
Copy link
Copy Markdown
Member

No description provided.

@nx-cloud
Copy link
Copy Markdown

nx-cloud bot commented Feb 28, 2026

View your CI Pipeline Execution ↗ for commit a33c781

Command Status Duration Result
nx run-many --t e2e --parallel=1 ✅ Succeeded <1s View ↗
nx run-many -t lint --parallel=3 ✅ Succeeded 9s View ↗
nx-cloud record -- npx nx format:check ✅ Succeeded 3s View ↗
nx run-many -t build --parallel=3 ✅ Succeeded <1s View ↗
nx run-many -t test --parallel=3 --ci --maxWork... ✅ Succeeded <1s View ↗
nx run integration:integration --ci --maxWorkers=2 ✅ Succeeded <1s View ↗
nx run-many -t test --parallel=3 --ci --maxWork... ✅ Succeeded <1s View ↗

☁️ Nx Cloud last updated this comment at 2026-02-28 07:58:01 UTC

Copy link
Copy Markdown

@nx-cloud nx-cloud bot left a comment

Choose a reason for hiding this comment

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

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

These changes fix the format:check task failure by applying the project's code formatting standards to the newly created and modified website components. Running nx format automatically corrected quote style inconsistencies and import formatting in copy-to-clipboard.tsx and hero-upgrade.tsx to match the project's Prettier configuration.

Tip

We verified this fix by re-running nx-cloud record -- npx nx format:check.

Suggested Fix changes
diff --git a/website/src/components/copy-to-clipboard.tsx b/website/src/components/copy-to-clipboard.tsx
index 3c1ccc14..4309826d 100644
--- a/website/src/components/copy-to-clipboard.tsx
+++ b/website/src/components/copy-to-clipboard.tsx
@@ -1,5 +1,5 @@
-import copy from 'copy-to-clipboard';
-import * as React from 'react';
+import copy from "copy-to-clipboard";
+import * as React from "react";
 
 export interface CopyToClipboardOptions {
   debug?: boolean;
@@ -28,9 +28,7 @@ export const CopyToClipboard: React.FC<CopyToClipboardProps> = ({
 }) => {
   const onClick = React.useCallback(
     (event: React.MouseEvent<HTMLElement>) => {
-      const elem = React.Children.only(
-        children
-      ) as React.ReactElement<ChildProps>;
+      const elem = React.Children.only(children) as React.ReactElement<ChildProps>;
       const result = copy(text, options);
 
       if (onCopy) {
@@ -38,7 +36,7 @@ export const CopyToClipboard: React.FC<CopyToClipboardProps> = ({
       }
 
       // Bypass onClick if it was present
-      if (elem.props.onClick && typeof elem.props.onClick === 'function') {
+      if (elem.props.onClick && typeof elem.props.onClick === "function") {
         elem.props.onClick(event);
       }
     },
diff --git a/website/src/components/hero-upgrade.tsx b/website/src/components/hero-upgrade.tsx
index 019bfbe4..668c33ff 100644
--- a/website/src/components/hero-upgrade.tsx
+++ b/website/src/components/hero-upgrade.tsx
@@ -1,8 +1,4 @@
-import {
-  ArrowDownTrayIcon,
-  CogIcon,
-  DocumentDuplicateIcon
-} from "@heroicons/react/24/outline";
+import { ArrowDownTrayIcon, CogIcon, DocumentDuplicateIcon } from "@heroicons/react/24/outline";
 import clsx from "clsx";
 import { useEffect, useState } from "react";
 import { CopyToClipboard } from "./copy-to-clipboard";

Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally f2eb-XFs2

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

@JamesHenry JamesHenry merged commit cc41aab into main Feb 28, 2026
16 checks passed
@JamesHenry JamesHenry deleted the website-deps branch February 28, 2026 08:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant