Skip to content

Commit

Permalink
fix: fix test error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeasonnow committed Aug 5, 2024
1 parent 9201e4f commit 5f2c4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/app/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub fn get_window(app: &mut App, config: PakeConfig, _data_dir: PathBuf) -> Wind
{
window_builder = window_builder
.data_directory(_data_dir)
.set_title(app.package_info().name);
.title(app.package_info().name)
}

window_builder.build().expect("Failed to build window")
Expand Down

0 comments on commit 5f2c4c7

Please sign in to comment.