We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 881522a + 5ad397c commit c98a4f4Copy full SHA for c98a4f4
stores/viewer.js
@@ -88,16 +88,16 @@ export const use_viewer_store = defineStore("viewer", {
88
return new Promise((resolve, reject) => {
89
clientToConnect
90
.connect(config)
91
- .then(async (validClient) => {
+ .then((validClient) => {
92
connectImageStream(validClient.getConnection().getSession())
93
this.client = validClient
94
clientToConnect.endBusy()
95
96
// Now that the client is ready let's setup the server for us
97
- await viewer_call({
+ viewer_call({
98
schema: schemas.opengeodeweb_viewer.create_visualization,
99
})
100
101
schema: schemas.opengeodeweb_viewer.reset,
102
103
this.is_running = true
0 commit comments