Skip to content

Commit

Permalink
chore: alpha release
Browse files Browse the repository at this point in the history
  • Loading branch information
drochetti committed Nov 25, 2023
1 parent 78c0a5e commit b3126a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fal-ai/serverless-client",
"description": "The fal serverless JS/TS client",
"version": "0.5.4",
"version": "0.6.0-alpha.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/client/src/realtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async function getConnection(app: string, key: string): Promise<WebSocket> {
const token = '***';

Check warning on line 109 in libs/client/src/realtime.ts

View workflow job for this annotation

GitHub Actions / build

'token' is assigned a value but never used

if (connections.has(key)) {
return connections.get(key);
return connections.get(key) as WebSocket;
}
const ws = new WebSocket(url);
connections.set(key, ws);
Expand Down

0 comments on commit b3126a6

Please sign in to comment.