feat(cursor): Add cursor Provider
This commit is contained in:
@@ -25,7 +25,7 @@ export default function RequestLogger() {
|
||||
const fetchLogs = async (showLoading = true) => {
|
||||
if (showLoading) setLoading(true);
|
||||
try {
|
||||
const res = await fetch("/api/usage/logs");
|
||||
const res = await fetch("/api/usage/request-logs");
|
||||
if (res.ok) {
|
||||
const data = await res.json();
|
||||
setLogs(data);
|
||||
|
||||
Reference in New Issue
Block a user