feat(cursor): Add cursor Provider

This commit is contained in:
decolua 2026-02-05 11:06:20 +07:00
parent abaeb22863
commit 0a026c7af6
16 changed files with 1113 additions and 937 deletions

View file

@ -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);