jbilcke-hf HF staff commited on
Commit
5dadd7e
1 Parent(s): d9b3577

less aggressive switch to the placeholder

Browse files
Files changed (1) hide show
  1. public/index.html +1 -1
public/index.html CHANGED
@@ -49,7 +49,7 @@
49
  <iframe
50
  id="iframe"
51
  class="border-none w-full h-screen"
52
- :src="(state === 'stopped' || draft.length < minPromptSize)
53
  ? '/placeholder.html'
54
  : `/app?prompt=${draft}`
55
  "></iframe>
 
49
  <iframe
50
  id="iframe"
51
  class="border-none w-full h-screen"
52
+ :src="(draft.length < minPromptSize)
53
  ? '/placeholder.html'
54
  : `/app?prompt=${draft}`
55
  "></iframe>