Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+1 -2
View File
@@ -8,7 +8,6 @@ use std::time::Duration;
use anyhow::Context;
use futures::FutureExt as _;
use warpui_core::r#async::{block_on, executor::Background, Timer};
use instant::Instant;
use itertools::Itertools;
use parking_lot::{Mutex, RwLock};
@@ -592,7 +591,7 @@ impl SearcherWriterWrapper {
.iter()
.filter(|(name, _)| self.id_field_names.contains(*name))
.collect();
id_pairs.sort_by(|(a, _), (b, _)| a.cmp(b));
id_pairs.sort_by_key(|(a, _)| *a);
let mut hasher = Sha256::new();
// Add each field-value pair to the hasher in sorted order