fix(desktop): align vendored instance version (#5687)

This fixes the stale vendored display version.

 `VENDORED_INSTANCE_CONFIG` currently stores old instance version
 `25.9.0` and while other components do override this correctly, it'd be
 better to keep this consistent per release.

 Closes FE-1102
This commit is contained in:
Shreyas 2025-12-11 14:23:09 +05:30 committed by GitHub
parent 3527f217c9
commit 65ee147681
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,7 @@ export const VENDORED_INSTANCE_CONFIG: Instance = {
kind: "vendored" as const, kind: "vendored" as const,
serverUrl: "app://hoppscotch", serverUrl: "app://hoppscotch",
displayName: "Hoppscotch Desktop", displayName: "Hoppscotch Desktop",
version: "25.9.0", version: "25.12.0",
lastUsed: new Date().toISOString(), lastUsed: new Date().toISOString(),
bundleName: "Hoppscotch", bundleName: "Hoppscotch",
} }