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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user