Skip to content

Commit 74ff532

Browse files
committed
Add missing symbol
Strangely enough, this wasn't flagged when running `pnpm begood` locally. CI found it though, and it's definitely a real issue. It's unclear to me how that's possible.
1 parent 3613ad7 commit 74ff532

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/desktop/src/components/BranchesViewPR.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
const forge = inject(DEFAULT_FORGE_FACTORY);
2727
const prService = $derived(forge.current.prService);
2828
const prQuery = $derived(prService?.get(prNumber, { forceRefetch: true }));
29+
const prUnit = $derived(prService?.unit);
2930
3031
const uiState = inject(UI_STATE);
3132
const projectState = $derived(uiState.project(projectId));
@@ -37,6 +38,7 @@
3738
const baseRepoQuery = $derived(baseBranchService.repo(projectId));
3839
const baseRepo = $derived(baseRepoQuery.response);
3940
41+
4042
const remotesService = inject(REMOTES_SERVICE);
4143
const stackService = inject(STACK_SERVICE);
4244

0 commit comments

Comments
 (0)