style: Apply Prettier formatting with 4-space indentation

Applied consistent code formatting across the project using Prettier, now configured to use 4-space indentation instead of tabs.
This commit is contained in:
Scott Idem
2025-11-18 18:40:50 -05:00
parent 6d1f9989d0
commit 0987cd6ad9
346 changed files with 86645 additions and 84459 deletions

View File

@@ -6,26 +6,28 @@ console.log(`ae_events_pres_mgmt +layout.ts start`);
// import { events_func } from '$lib/ae_events_functions';
export async function load({ parent }) {
const log_lvl: number = 0;
const log_lvl: number = 0;
const parent_data = await parent();
// console.log(`ae_events_pres_mgmt +layout.ts parent_data:`, parent_data);
const parent_data = await parent();
// console.log(`ae_events_pres_mgmt +layout.ts parent_data:`, parent_data);
const account_id = parent_data.account_id;
if (!account_id) {
console.log(`events_pres_mgmt +layout.ts: The account_id was not found in the parent_data!!!`);
return false;
}
const account_id = parent_data.account_id;
if (!account_id) {
console.log(
`events_pres_mgmt +layout.ts: The account_id was not found in the parent_data!!!`
);
return false;
}
const ae_acct = parent_data[account_id];
if (log_lvl) {
console.log(`ae_acct = `, ae_acct);
}
const ae_acct = parent_data[account_id];
if (log_lvl) {
console.log(`ae_acct = `, ae_acct);
}
// WARNING: Precaution against shared parent_data between sites and sessions.
parent_data[account_id] = ae_acct;
// WARNING: Precaution against shared parent_data between sites and sessions.
parent_data[account_id] = ae_acct;
return parent_data;
return parent_data;
}
// export const prerender = false;