jbilcke-hf HF staff commited on
Commit
9a21adf
1 Parent(s): bcfd882
Files changed (1) hide show
  1. src/app/main.tsx +1 -3
src/app/main.tsx CHANGED
@@ -25,7 +25,6 @@ import { exportClapToVideo } from './server/aitube/exportClapToVideo'
25
 
26
  import { useStore } from './store'
27
  import HFLogo from "./hf-logo.svg"
28
- import { fileToBase64 } from '@/lib/base64/fileToBase64'
29
  import { Input } from '@/components/ui/input'
30
  import { Field } from '@/components/form/field'
31
  import { Label } from '@/components/form/label'
@@ -34,10 +33,9 @@ import { GenerationStage } from '@/types'
34
  import { FileContent } from 'use-file-picker/dist/interfaces'
35
 
36
  export function Main() {
37
- // for indelicate users trying to generate many Roblox or "mastiff" videos at once
38
  const [storyPromptDraft, setStoryPromptDraft] = useLocalStorage<string>(
39
  "AI_STORIES_FACTORY_STORY_PROMPT_DRAFT",
40
- ""
41
  )
42
  const promptDraftRef = useRef("")
43
  promptDraftRef.current = storyPromptDraft
 
25
 
26
  import { useStore } from './store'
27
  import HFLogo from "./hf-logo.svg"
 
28
  import { Input } from '@/components/ui/input'
29
  import { Field } from '@/components/form/field'
30
  import { Label } from '@/components/form/label'
 
33
  import { FileContent } from 'use-file-picker/dist/interfaces'
34
 
35
  export function Main() {
 
36
  const [storyPromptDraft, setStoryPromptDraft] = useLocalStorage<string>(
37
  "AI_STORIES_FACTORY_STORY_PROMPT_DRAFT",
38
+ "Yesterday I was walking in SF when I saw a zebra"
39
  )
40
  const promptDraftRef = useRef("")
41
  promptDraftRef.current = storyPromptDraft