Skip to content
Merged
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
1 change: 0 additions & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/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"


npx post-merge-install "pnpm install"
1 change: 0 additions & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/sh
# . "$(dirname "$0")/_/husky.sh" // Depreciated in husky v10, TODO: Remove this permanently
. "$(dirname "$0")/common.sh"

pnpm build
Expand Down
2 changes: 1 addition & 1 deletion src/components/layouts/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";
import ScrollToTopButton from "./scroll-to-top";

const products = [
{ name: "IQ AI", href: "https://iqai.app/" },
{ name: "IQ AI", href: "https://iqai.com/" },
{ name: "IQ.wiki", href: "https://iq.wiki/" },
{ name: "Sophia", href: "https://sophia.iqai.com/" },
{ name: "AIDEN", href: "https://aiden.id/" },
Expand Down
2 changes: 1 addition & 1 deletion src/components/layouts/ecosystem/iqai.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function IQAI() {
<TokenBrief
title={t("title")}
description={t("description")}
action="https://iqai.app"
action="https://iqai.com"
buttonText={t("button")}
/>
<div className="w-full rounded-xl overflow-hidden py-12">
Expand Down
4 changes: 2 additions & 2 deletions src/data/Nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const navLinks = [
export const appLinks = [
{
title: "IQ AI",
href: "https://iqai.app",
href: "https://iqai.com",
},
{
title: "IQ.wiki",
Expand All @@ -62,7 +62,7 @@ export const appLinks = [
export const mobileNavLinks = [
{
title: "IQ AI",
href: "https://iqai.app/",
href: "https://iqai.com/",
},
{
title: "IQ.wiki",
Expand Down
Loading