Remove dead recovery meetings search prefill

This commit is contained in:
Scott Idem
2026-05-13 17:24:08 -04:00
parent 530b53aa6d
commit 453fcf581d

View File

@@ -37,28 +37,6 @@ import Help_tech from '$lib/app_components/e_app_help_tech.svelte';
let ae_promises: key_val = $state({});
/**
* Session Persistent Search (Refactored 2026-01-20)
*
* WHY: If the user has 'save_search_text' enabled in their local profile,
* we map the long-term saved strings into the current session store on mount.
* This ensures the search bar is pre-populated with their last known query.
*/
if (
$idaa_loc.recovery_meetings?.save_search_text &&
$idaa_loc.recovery_meetings?.saved_search__session
) {
$idaa_sess.recovery_meetings.fulltext_search_qry_str =
$idaa_loc.recovery_meetings.saved_search__session;
}
if (
$idaa_loc.recovery_meetings?.save_search_text &&
$idaa_loc.recovery_meetings?.saved_search__session_location_name
) {
$idaa_sess.recovery_meetings.location_name_qry_str =
$idaa_loc.recovery_meetings.saved_search__session_location_name;
}
// *** Functions and Logic
/**
* Reactive Search Trigger