Skip to content

Commit 69e1c81

Browse files
committed
Remove consoles
1 parent f15a4d2 commit 69e1c81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/RelistenAPI.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ export class RelistenAPI {
1515
options: { revalidate?: number } = { revalidate: 60 * 5 }
1616
): Promise<T> => {
1717
const url = `${this.baseURL}${endpoint}`;
18-
console.log('Requesting', endpoint, options);
18+
19+
// console.log('Requesting', endpoint, options);
20+
1921
try {
2022
const response = await ky(url, {
2123
next: options.revalidate ? { revalidate: options.revalidate } : undefined,

0 commit comments

Comments
 (0)