Fix semantic merge conflict (#45078)

Lukas Wirth created

Release Notes:

- N/A *or* Added/Fixed/Improved ...

Change summary

crates/project/src/trusted_worktrees.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/project/src/trusted_worktrees.rs 🔗

@@ -223,7 +223,7 @@ impl From<RemoteConnectionOptions> for RemoteHostLocation {
         let (user_name, host_name) = match options {
             RemoteConnectionOptions::Ssh(ssh) => (
                 ssh.username.map(SharedString::new),
-                SharedString::new(ssh.host),
+                SharedString::new(ssh.host.to_string()),
             ),
             RemoteConnectionOptions::Wsl(wsl) => (
                 wsl.user.map(SharedString::new),