Skip to content

Commit a622b57

Browse files
committed
fix: Remove await from axios.get to resolve issue during initial F5 debugging
1 parent b8aa4b4 commit a622b57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
556556

557557
// Check if local dev server is running.
558558
try {
559-
await axios.get(`http://${localServerUrl}`)
559+
axios.get(`http://${localServerUrl}`)
560560
} catch (error) {
561561
vscode.window.showErrorMessage(t("common:errors.hmr_not_running"))
562562

0 commit comments

Comments
 (0)