Skip to content

Commit

Permalink
update save file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Pickles888 committed Aug 15, 2024
1 parent 3431a10 commit 639a9dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub enum Message {
impl Persistance for Todo {
fn config_path() -> Result<PathBuf, PersistError> {
let mut path_buf = dirs::config_dir().ok_or(PersistError::Path)?;
path_buf.push("todo_config.json");
path_buf.push("todo_save.json");

Ok(path_buf)
}
Expand Down

0 comments on commit 639a9dd

Please sign in to comment.