Skip to content

fix: correct IQ AI ecosystem URL + remove deprecated husky lines#70

Merged
invisiblemask merged 4 commits into
mainfrom
fix/iqai-url-and-husky
Jun 30, 2026
Merged

fix: correct IQ AI ecosystem URL + remove deprecated husky lines#70
invisiblemask merged 4 commits into
mainfrom
fix/iqai-url-and-husky

Conversation

@invisiblemask

@invisiblemask invisiblemask commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

Summary

  • Updates all IQ AI ecosystem links from https://iqai.app/ to https://iqai.com/. The iqai.app domain currently returns a 404 (DEPLOYMENT_NOT_FOUND), breaking the nav link, footer link, and the "Explore IQ AI" button in the IQ AI ecosystem section.
  • Removes the deprecated husky.sh shebang/source lines from .husky/post-merge, which are scheduled to fail in husky v10.

Changes

  • src/data/Nav.ts — desktop + mobile nav "IQ AI" links
  • src/components/layouts/Footer.tsx — footer "IQ AI" link
  • src/components/layouts/ecosystem/iqai.tsx — "Explore IQ AI" button
  • .husky/post-merge — drop deprecated husky lines

Test plan

  • Verify the "Explore IQ AI" button and nav/footer links navigate to https://iqai.com/
  • Confirm git pull/merge no longer emits the husky deprecation warning

closes https://github.com/IQIndustries/issues/issues/5055

The iqai.app domain returns a 404; point all IQ AI ecosystem links
(nav, footer, and the Explore IQ AI button) to iqai.com.
The husky.sh shebang/source lines are deprecated and will fail in
husky v10.
@vercel

vercel Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
braindao-ui Ready Ready Preview Jun 30, 2026 10:56am

Request Review

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Code Review

This pull request updates the domain for 'IQ AI' from iqai.app to iqai.com across multiple components and navigation files. It also modifies the '.husky/post-merge' hook by removing deprecated husky sourcing. However, removing the shebang line from the hook script will cause execution failures on Unix-like systems, so it should be restored as suggested by the reviewer.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment thread .husky/post-merge
@@ -1,5 +1,3 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
. "$(dirname "$0")/common.sh"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

high

While removing the deprecated husky.sh sourcing line is correct, removing the #!/bin/sh shebang will cause the hook to fail on Unix-like systems (macOS/Linux). Git executes hook scripts directly; without a shebang, the OS kernel cannot identify the interpreter to run the script, leading to execution failure. Please preserve the #!/bin/sh shebang at the top of the file.

#!/bin/sh
. "$(dirname "$0")/common.sh"

Git executes hooks directly, so the #!/bin/sh shebang is required for
the OS to identify the interpreter. Only the deprecated husky.sh source
line should be removed for v10 compatibility.
@invisiblemask
invisiblemask merged commit 81e7dd6 into main Jun 30, 2026
2 checks passed
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.

2 participants