Skip to content

Commit b2d9f4b

Browse files
authored
Merge pull request #9798 from gitbutlerapp/kv-branch-52
Remove unnecessary async
2 parents 06f611a + 17f52a5 commit b2d9f4b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/gitbutler-tauri/src/claude.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ pub async fn claude_send_message(
2828
}
2929

3030
#[tauri::command(async)]
31-
pub async fn claude_get_messages(
31+
#[instrument(skip(app), err(Debug))]
32+
pub fn claude_get_messages(
3233
app: State<'_, App>,
3334
project_id: ProjectId,
3435
stack_id: StackId,

0 commit comments

Comments
 (0)