Skip to content

Commit 39cfea8

Browse files
Merge pull request #7903 from gitbutlerapp/fix-unapplying-in-v3
Fix unapplying in v3
2 parents 44dd84c + dc70c8b commit 39cfea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/desktop/src/lib/stacks/stackService.svelte.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ function injectEndpoints(api: ClientState['backendApi']) {
603603
unapply: build.mutation<void, { projectId: string; stackId: string }>({
604604
query: ({ projectId, stackId }) => ({
605605
command: 'save_and_unapply_virtual_branch',
606-
params: { projectId, branch: stackId }
606+
params: { projectId, stackId }
607607
}),
608608
invalidatesTags: [ReduxTag.Stacks]
609609
}),

0 commit comments

Comments
 (0)