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 4 additions and 3 deletions
Showing only changes of commit 3e9fbacd94 - Show all commits

View File

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

View File

@@ -6,6 +6,6 @@ export async function GET(request: Request) {
return NextResponse.json({ success: true, version, 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 });
return NextResponse.json({ success: false, version: "0.1.5", reason: (error as Error).message, }, { status: 500 });
}
}