Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Sep 28, 2021
1 parent f443bb5 commit f729728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion durablefunctionsmonitor-vscodeext/src/MonitorView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export class MonitorView
const headers: any = {};
headers[SharedConstants.NonceHeaderName] = this._backend.backendCommunicationNonce;

return axios.get(`${this._backend.backendUrl}/${this._hubName}/id-suggestions(prefix='${prefix}')`, { headers })
return axios.get(`${this._backend.backendUrl}/--${this._hubName}/id-suggestions(prefix='${prefix}')`, { headers })
.then(response => {
return response.data as string[];
});
Expand Down

0 comments on commit f729728

Please sign in to comment.