fix: Resolve props_invalid_value error and add each block keys\n\n- Initialized .files.upload_complete in src/routes/hosted_files/video_util/+page.svelte to prevent props_invalid_value error.\n- Removed commented-out, unused each blocks from several components.\n- Added each keys to improve reactivity and resolve svelte/require-each-key errors in several components.

This commit is contained in:
Scott Idem
2025-11-20 20:21:06 -05:00
parent a68d5439bd
commit b91d79c175
8 changed files with 14 additions and 31 deletions

View File

@@ -60,6 +60,13 @@
$ae_loc.files.processed_file_kv = {};
}
if (!$ae_sess.files) {
$ae_sess.files = {};
}
if (typeof $ae_sess.files.upload_complete === 'undefined') {
$ae_sess.files.upload_complete = false;
}
$effect(() => {
// if ($ae_sess.files.upload_complete && $ae_sess.files.uploaded_file_li) {
// // Append this list to the $ae_loc.files.uploaded_file_li list