Commit
•
5dadd7e
1
Parent(s):
d9b3577
less aggressive switch to the placeholder
Browse files- 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="(
|
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>
|