Skip to content

Commit

Permalink
fix: use correct relative path when sending to GH
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Sep 8, 2024
1 parent 6c01450 commit f51af9e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/desktop/src/routes/[projectId]/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@
baseBranchName,
forkInfo,
project.git_host?.use_pull_request_template ?? false,
project.git_host?.pull_request_template_path ?? ''
project.git_host?.pull_request_template_path
? project.git_host?.pull_request_template_path.replace(project.path, '')
: ''
)
: undefined;
Expand Down

0 comments on commit f51af9e

Please sign in to comment.