Skip to content

Commit

Permalink
fix more bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Nov 25, 2024
1 parent f44d6f2 commit a468734
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.8.3",
"version": "0.8.4",
"scripts": {
"start": "vite --port $UI_PORT --clearScreen false",
"build": "vite build",
Expand Down
6 changes: 3 additions & 3 deletions ui/src/presence-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ export class PresenceApp extends LitElement {
.clonedCell=${clonedCell}
@request-open-room=${async (e: CustomEvent) => {
try {
await (this._weaveClient as any).openAsset(
await (this._weaveClient as any).openWal(
{
hrl: [clonedCell.cell_id[0], NULL_HASH],
},
Expand Down Expand Up @@ -575,7 +575,7 @@ export class PresenceApp extends LitElement {
.groupRoomInfo=${roomInfo}
@request-open-room=${async (e: { detail: ClonedCell }) => {
try {
await (this._weaveClient as any).openAsset(
await (this._weaveClient as any).openWal(
{
hrl: [e.detail.cell_id[0], NULL_HASH],
},
Expand Down Expand Up @@ -669,7 +669,7 @@ export class PresenceApp extends LitElement {
<button
class="enter-main-room-btn"
@click=${async () => {
await (this._weaveClient as any).openAsset(
await (this._weaveClient as any).openWal(
{
hrl: [this._provisionedCell!.cell_id[0], NULL_HASH],
},
Expand Down

0 comments on commit a468734

Please sign in to comment.