Fix version #19

Merged
bagasbanuna merged 2 commits from apple-reject/28-nov-25 into staging 2025-11-28 11:47:44 +08:00
3 changed files with 3 additions and 7 deletions

View File

@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
## [1.5.18](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.17...v1.5.18) (2025-11-28)
## [1.5.17](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.16...v1.5.17) (2025-11-24) ## [1.5.17](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.16...v1.5.17) (2025-11-24)

View File

@@ -1,6 +1,6 @@
{ {
"name": "hipmi", "name": "hipmi",
"version": "1.5.17", "version": "1.5.18",
"private": true, "private": true,
"prisma": { "prisma": {
"seed": "bun prisma/seed.ts" "seed": "bun prisma/seed.ts"

View File

@@ -55,12 +55,6 @@ async function GET(request: Request) {
const takeData = 10; const takeData = 10;
const skipData = page * takeData - takeData; const skipData = page * takeData - takeData;
// console.log("[BLOCKED ID]", id);
// console.log("[PAGE]", page);
// console.log("[TAKE DATA]", takeData);
// console.log("[SKIP DATA]", skipData);
// console.log("[SEARCH]", search);
try { try {
const data = await prisma.blockedUser.findMany({ const data = await prisma.blockedUser.findMany({
take: page ? takeData : undefined, take: page ? takeData : undefined,