Explorar el Código

fix: Add missing import for createPicker in MessageInput.svelte

Taylor Wilsdon (aider) hace 5 meses
padre
commit
f29dc2f865
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/lib/components/chat/MessageInput.svelte

+ 1 - 0
src/lib/components/chat/MessageInput.svelte

@@ -1,6 +1,7 @@
 <script lang="ts">
 	import { toast } from 'svelte-sonner';
 	import { v4 as uuidv4 } from 'uuid';
+	import { createPicker } from '$lib/utils/google-drive-picker';
 
 	import { onMount, tick, getContext, createEventDispatcher, onDestroy } from 'svelte';
 	const dispatch = createEventDispatcher();