Skip to content

Commit 4de6454

Browse files
committed
fix: remove stray changes from upstream sync
1 parent f978479 commit 4de6454

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@
8888
"typescript": "^5.9.2",
8989
"vitest": "^3.2.4"
9090
}
91-
}
91+
}

apps/web/src/app/(home)/_components/npm-package.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const NpmPackage = () => {
99
const getLatestVersion = async () => {
1010
try {
1111
const res = await fetch(
12-
"https://registry.npmjs.org/create-better-t-stack/latest",
12+
"https://api.github.com/repos/AmanVarshney01/create-better-t-stack/releases",
1313
);
1414
if (!res.ok) throw new Error("Failed to fetch version");
1515
const data = await res.json();
@@ -31,4 +31,4 @@ const NpmPackage = () => {
3131
);
3232
};
3333

34-
export default NpmPackage;
34+
export default NpmPackage;

0 commit comments

Comments
 (0)