chore: update subproject commit and add blank lines for consistency

- Updated the subproject commit reference to indicate a dirty state.
- Added blank lines to various files for improved readability and consistency across the codebase.
This commit is contained in:
Jamie Pine 2025-11-18 02:31:20 -08:00
parent 5d1aa8aaa3
commit ad63cba189
17 changed files with 17 additions and 0 deletions

View File

@ -67,3 +67,4 @@ enum VideoMediaData {
Table,
Blurhash,
}

View File

@ -46,3 +46,4 @@ enum Entries {
Table,
}

View File

@ -121,3 +121,4 @@ mod tests {
assert!(!hash.is_empty());
}
}

View File

@ -13,3 +13,4 @@ pub struct VolumeTrackInput {
pub display_name: Option<String>,
}

View File

@ -10,3 +10,4 @@ pub struct VolumeUntrackInput {
pub volume_id: Uuid,
}

View File

@ -4,3 +4,4 @@ analysis.json
analysis.md

View File

@ -38,3 +38,4 @@ name = "analyze_sync_log"
required-features = ["cli"]

View File

@ -49,3 +49,4 @@ fn main() -> Result<()> {
Ok(())
}

View File

@ -3,3 +3,4 @@
mod timeline;
pub use timeline::{generate_timeline, Timeline, TimelineBucket};

View File

@ -16,3 +16,4 @@ pub fn export_json(templates: &[Template], groups: &[LogGroup]) -> Result<String
let export = JsonExport { templates, groups };
Ok(serde_json::to_string_pretty(&export)?)
}

View File

@ -97,3 +97,4 @@ mod tests {
}
}

View File

@ -9,3 +9,4 @@ pub use template::detect_templates;
pub use tokenizer::tokenize;
pub use types::infer_variable_type;

View File

@ -238,3 +238,4 @@ mod tests {
}
}

View File

@ -62,3 +62,4 @@ mod tests {
}
}

View File

@ -103,3 +103,4 @@ mod tests {
}
}

View File

@ -56,3 +56,4 @@ export function useJobDispatch() {
return {runJob, isDispatching: dispatchJob.isPending};
}

View File

@ -117,3 +117,4 @@ export function getDeviceIconBySlug(
const device = devices.get(deviceSlug);
return device ? getDeviceIcon(device) : Laptop; // Default to Laptop if device not found
}