lotto lab 통계 수치 정상화

This commit is contained in:
2026-01-26 01:05:42 +09:00
parent 472a55c0a7
commit d67f925878
2 changed files with 86 additions and 20 deletions

View File

@@ -34,8 +34,8 @@ export function recommend(params) {
return apiGet(`/api/lotto/recommend?${qs.toString()}`);
}
export function getHistory(limit = 30) {
return apiGet(`/api/history?limit=${limit}`);
export function getHistory(limit = 30, offset = 0) {
return apiGet(`/api/history?limit=${limit}&offset=${offset}`);
}
export function deleteHistory(id) {