Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x authored Sep 26, 2023
1 parent 5c80c34 commit fd3a4eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/seam/connect/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export class SeamHttp {

get workspaces(): SeamHttpWorkspaces {
if (this.#legacy) {
return new SeamHttpLegacyWorkspaces.fromClient(this.client)
return SeamHttpLegacyWorkspaces.fromClient(this.client)
}
return new SeamHttpWorkspaces.fromClient(this.client)
return SeamHttpWorkspaces.fromClient(this.client)
}
}

Expand Down

0 comments on commit fd3a4eb

Please sign in to comment.