๐งน [Remove unwrap in src/app.rs]
๐ฏ **What:** Removed the `unwrap()` in `src/app.rs` when getting the parent directory path in `refresh_entries`.
๐ก **Why:** Using `unwrap()` can cause panics if the parent directory does not exist or if the value is `None`. Using `if let Some(parent) = self.current_path.parent()` is safer and cleaner.
โ
**Verification:** Verified by checking that there are no remaining instances of `unwrap()` in the file, and that both `cargo clippy` and `cargo test` run without errors or warnings.
โจ **Result:** Improved codebase safety and readability.