feat(cursor): Add cursor Provider
This commit is contained in:
parent
abaeb22863
commit
0a026c7af6
16 changed files with 1113 additions and 937 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue