Skip to content

Commit

Permalink
Does not like iframes, removing.
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Oct 23, 2023
1 parent 2b7e769 commit b321e68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ def start_vscode(id):

# Redirect to a waiting page or directly embed the VS Code interface if it's ready
# The implementation of this part can vary based on how you handle the VS Code UI embedding
return render_template("vscode.html")
# return render_template("vscode.html")
vscode_url = url_for('vscode_proxy', _external=True)
return redirect(vscode_url)


@app.route(
Expand Down

0 comments on commit b321e68

Please sign in to comment.