Skip to content

Commit 073fbf3

Browse files
authored
Merge pull request #234 from Open-STEM/kq-fix
Forgot to rename the env variable to be consistent for this client.
2 parents befa8d1 + 768e4fa commit 073fbf3

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://experientialrobotics.org/",
55
"license": "GPL-2.0-only",
66
"private": true,
7-
"version": "2.0.14",
7+
"version": "2.0.17",
88
"type": "module",
99
"scripts": {
1010
"dev": "vite",

public/CHANGELOG.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version 2.0.14
1+
# Version 2.0.17
22

33
#### Bluetooth support
44
<img height="10%" width="10%" src="src/assets/images/Bluetooth_FM_Black.png"/></img>
@@ -34,7 +34,4 @@
3434
* Support the New Puppet Protocol for communication with the XRP Bluetooth (advanced users) [See XPP](https://xrpcode.io/docs/puppet_protocol)
3535

3636
#### Bug Fixes
37-
* [Blockly lost changelistener](https://github.com/Open-STEM/XRPWeb/issues/223)
38-
* [Check browser support](https://github.com/Open-STEM/XRPWeb/issues/220)
39-
* [Connect/Reconnect cause duplicate characters in shell](https://github.com/Open-STEM/XRPWeb/issues/219)
40-
* [Correct spelling in Curriculum help menu](https://github.com/Open-STEM/XRPWeb/issues/217)
37+
* [Secured Client credentials](https://github.com/Open-STEM/XRPWeb/issues/209)

src/utils/gemini-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class GeminiClient {
99
private handshakeToken: string | null = null; // Store the token here
1010

1111
constructor() {
12-
this.backendUrl = import.meta.env.VITE_GOOGLE_CHATAPI_PROXY_TARGET + '/api';
12+
this.backendUrl = import.meta.env.GOOGLE_CHATAPI_PROXY_TARGET + '/api';
1313
}
1414

1515
// NEW METHOD: Must be called before anything else

0 commit comments

Comments
 (0)