diff --git a/crates/ui/src/main.rs b/crates/ui/src/main.rs index 53c9ad2..436421f 100644 --- a/crates/ui/src/main.rs +++ b/crates/ui/src/main.rs @@ -1238,13 +1238,13 @@ fn IngestPanel() -> Element { pg_tables.set(Some(tables)); } } - Err(e) => pg_tables.set(None), + Err(_) => pg_tables.set(None), } pg_loading.set(false); }); }; - let mut import_table = move |table: String| { + let import_table = move |table: String| { let host = pg_host.read().clone(); let db = pg_db.read().clone(); spawn(async move { diff --git a/crates/vectord/src/trial.rs b/crates/vectord/src/trial.rs index 75add9a..9c4b767 100644 --- a/crates/vectord/src/trial.rs +++ b/crates/vectord/src/trial.rs @@ -10,7 +10,6 @@ /// JSONL on every event. See `append_log.rs` for the full rationale. use chrono::{DateTime, Utc}; -use object_store::ObjectStore; use serde::{Deserialize, Serialize}; use std::collections::HashMap; use std::sync::Arc;