From e76a76116efe92b0b4fa630fcaf0da05014eff1c Mon Sep 17 00:00:00 2001 From: Guillem Cordoba Date: Tue, 10 May 2022 14:29:57 +0200 Subject: [PATCH] Upped cell-client and fix issue --- package-lock.json | 16 ++++++++-------- ui/elemental-chess/package.json | 2 +- ui/elemental-chess/src/chess-app.ts | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index c6d2dd2..237885a 100755 --- a/package-lock.json +++ b/package-lock.json @@ -2089,9 +2089,9 @@ "integrity": "sha512-GTfeQ2iYvYYrIkuaF0QupWP/y8sdItwL6Tr1osyaU7eUsWtGfpZqDcTZny8KNDdnQAEEP2nDWZORA/Z3EMJa3w==" }, "node_modules/@holochain-open-dev/cell-client": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@holochain-open-dev/cell-client/-/cell-client-0.3.3.tgz", - "integrity": "sha512-WWetXn6fmIZk/Z1Ph1qfBBGfJUMvLYe04pqmN/7s8L2W5dIj5oCp59j1mhsaG1Siz+F6kUVrcNUDzBd+smx1GA==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@holochain-open-dev/cell-client/-/cell-client-0.3.4.tgz", + "integrity": "sha512-O3cAbbB2vJzXJuxYpFgpHD3GM5CeweLOtESlbTgifOS5JSBALXzQePjkjukYoFamu7/Co/qFNcg37locouP74A==", "dependencies": { "@holochain/client": "^0.3.2", "lodash-es": "^4.17.21" @@ -14741,7 +14741,7 @@ "@eyss/invitations": "github:eyss/invitations#ui-build", "@eyss/turn-based-game": "github:eyss/turn-based-game#ui-build", "@holo-host/chaperone": "^9.0.0", - "@holochain-open-dev/cell-client": "^0.3.3", + "@holochain-open-dev/cell-client": "^0.3.4", "@holochain-open-dev/context": "^0.0.3", "@holochain-open-dev/core-types": "^0.2.0", "@holochain-open-dev/profiles": "^0.0.7", @@ -16155,7 +16155,7 @@ "@eyss/invitations": "github:eyss/invitations#ui-build", "@eyss/turn-based-game": "github:eyss/turn-based-game#ui-build", "@holo-host/chaperone": "^9.0.0", - "@holochain-open-dev/cell-client": "^0.3.3", + "@holochain-open-dev/cell-client": "^0.3.4", "@holochain-open-dev/context": "^0.0.3", "@holochain-open-dev/core-types": "^0.2.0", "@holochain-open-dev/profiles": "^0.0.7", @@ -16365,9 +16365,9 @@ "integrity": "sha512-GTfeQ2iYvYYrIkuaF0QupWP/y8sdItwL6Tr1osyaU7eUsWtGfpZqDcTZny8KNDdnQAEEP2nDWZORA/Z3EMJa3w==" }, "@holochain-open-dev/cell-client": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@holochain-open-dev/cell-client/-/cell-client-0.3.3.tgz", - "integrity": "sha512-WWetXn6fmIZk/Z1Ph1qfBBGfJUMvLYe04pqmN/7s8L2W5dIj5oCp59j1mhsaG1Siz+F6kUVrcNUDzBd+smx1GA==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@holochain-open-dev/cell-client/-/cell-client-0.3.4.tgz", + "integrity": "sha512-O3cAbbB2vJzXJuxYpFgpHD3GM5CeweLOtESlbTgifOS5JSBALXzQePjkjukYoFamu7/Co/qFNcg37locouP74A==", "requires": { "@holochain/client": "^0.3.2", "lodash-es": "^4.17.21" diff --git a/ui/elemental-chess/package.json b/ui/elemental-chess/package.json index 3437063..1bdde5c 100755 --- a/ui/elemental-chess/package.json +++ b/ui/elemental-chess/package.json @@ -19,7 +19,7 @@ "@eyss/invitations": "github:eyss/invitations#ui-build", "@eyss/turn-based-game": "github:eyss/turn-based-game#ui-build", "@holo-host/chaperone": "^9.0.0", - "@holochain-open-dev/cell-client": "^0.3.3", + "@holochain-open-dev/cell-client": "^0.3.4", "@holochain-open-dev/core-types": "^0.2.0", "@holochain-open-dev/profiles": "^0.0.7", "@holochain-open-dev/context": "^0.0.3", diff --git a/ui/elemental-chess/src/chess-app.ts b/ui/elemental-chess/src/chess-app.ts index f725cdc..f25a7cf 100755 --- a/ui/elemental-chess/src/chess-app.ts +++ b/ui/elemental-chess/src/chess-app.ts @@ -210,7 +210,7 @@ export class ChessApp extends ScopedElementsMixin(LitElement) { icon="logout" style="--mdc-theme-primary: white;" @click=${async () => { - const c = (this._cellClient as any).connection.connection; + const c = (this._cellClient as any).client.connection; await c.signOut(); window.location.reload(); }}