We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15a4d2 commit 69e1c81Copy full SHA for 69e1c81
src/lib/RelistenAPI.ts
@@ -15,7 +15,9 @@ export class RelistenAPI {
15
options: { revalidate?: number } = { revalidate: 60 * 5 }
16
): Promise<T> => {
17
const url = `${this.baseURL}${endpoint}`;
18
- console.log('Requesting', endpoint, options);
+
19
+ // console.log('Requesting', endpoint, options);
20
21
try {
22
const response = await ky(url, {
23
next: options.revalidate ? { revalidate: options.revalidate } : undefined,
0 commit comments