Tristan Thrush commited on
Commit
0ed53d0
1 Parent(s): a54b97e
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ with demo:
87
  _submit,
88
  inputs=[state, dummy],
89
  outputs=[response_output, state, dummy],
90
- _js="function(state, dummy) { return [state, window.location.search]; }",
91
  )
92
  #gr.Markdown(state["response"].text if "response" in state and state["response"] is not None else "")
93
 
 
87
  _submit,
88
  inputs=[state, dummy],
89
  outputs=[response_output, state, dummy],
90
+ _js="function(state, dummy) { console.log(window.location.search); return [state, window.location.search]; }",
91
  )
92
  #gr.Markdown(state["response"].text if "response" in state and state["response"] is not None else "")
93