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:
parent
3527f217c9
commit
65ee147681
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue