Skip to content

Commit 3a67d64

Browse files
committed
Remove console.log
1 parent e484f30 commit 3a67d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/getPosts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default async function getPosts() {
22
const API_KEY = process.env.NEXT_GHOST_CMS_API_KEY;
33
const endpoint = `${process.env.NEXT_GHOST_CMS_CONTENT_URL}/posts?key=${API_KEY}&filter=tag:[hardhat,hardhat-ignition]`;
4-
console.log(endpoint)
4+
55
const response = await fetch(endpoint);
66

77
if (!response.ok) {

0 commit comments

Comments
 (0)