fix: correct IQ AI ecosystem URL + remove deprecated husky lines#70
Conversation
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.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
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.
| @@ -1,5 +1,3 @@ | |||
| #!/bin/sh | |||
| . "$(dirname "$0")/_/husky.sh" | |||
| . "$(dirname "$0")/common.sh" | |||
There was a problem hiding this comment.
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.
Summary
https://iqai.app/tohttps://iqai.com/. Theiqai.appdomain 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.husky.shshebang/source lines from.husky/post-merge, which are scheduled to fail in husky v10.Changes
src/data/Nav.ts— desktop + mobile nav "IQ AI" linkssrc/components/layouts/Footer.tsx— footer "IQ AI" linksrc/components/layouts/ecosystem/iqai.tsx— "Explore IQ AI" button.husky/post-merge— drop deprecated husky linesTest plan
git pull/merge no longer emits the husky deprecation warningcloses https://github.com/IQIndustries/issues/issues/5055