Skip to content

Commit 91baae5

Browse files
committed
CORE-586: Fix book passed from adoption form to Partners page
[CORE-586]
1 parent c14f1c0 commit 91baae5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/components/book-selector/after-form-submit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function afterFormSubmit(
1414
(entry) => entry.salesforce_abbreviation === preselectedTitle
1515
);
1616

17-
/* Send to Tech Scout with books pre-selected */
18-
const scoutBooks = selectedBooks.map((sfBook) => sfBook.value);
17+
/* Send to Tech Scout with books pre-selected -- Language removed */
18+
const scoutBooks = selectedBooks.map((sfBook) => sfBook.value.replace(/ *\[.*/, ''));
1919

2020
navigate('/partners', {
2121
state: {

src/app/pages/partners/results/results.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010

1111
@include wider-than($phone-max) {
12-
min-height: 60rem;
12+
min-height: 120rem;
1313
}
1414

1515
>:first-child {

0 commit comments

Comments
 (0)