amalia/23-apr-26 #39

Merged
amaliadwiy merged 13 commits from amalia/23-apr-26 into join 2026-04-23 17:31:26 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 5cd35dd534 - Show all commits

View File

@@ -1,6 +1,6 @@
{
"name": "sistem-desa-mandiri",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev --experimental-https",

View File

@@ -2,7 +2,7 @@ import { NextResponse } from "next/server";
export async function GET(request: Request) {
try {
return NextResponse.json({ success: true, version: "2.2.0", tahap: "beta", update: "-perbaikan fitur diskusi dan perbaikan tampilan mobile" }, { status: 200 });
return NextResponse.json({ success: true, version: "0.1.1", tahap: "beta", update: "-perbaikan fitur diskusi dan perbaikan tampilan mobile" }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, version: "Gagal mendapatkan version, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });