Skip to content

Commit

Permalink
refactor: ♻️ change save location
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrnoch committed Aug 16, 2024
1 parent 1314fce commit bebad8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::path::PathBuf;
/// - config.toml
pub fn get_app_dir() -> PathBuf {
// get app dir with /accounting. use std libary
let path = platform_dirs::AppDirs::new(Some("accounting"), true).unwrap();
let path = platform_dirs::AppDirs::new(Some("accountingdata"), true).unwrap();
let mut data_dir = path.data_dir;

// check if in dev mode
Expand Down

0 comments on commit bebad8e

Please sign in to comment.