Skip to content

Commit 3ff8eee

Browse files
committed
Fix session ID not being passed
1 parent ad50f8c commit 3ff8eee

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/components/routes/product-widget/SelectProducts

1 file changed

+1
-1
lines changed

frontend/src/components/routes/product-widget/SelectProducts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ const SelectProducts = (props: SelectProductsProps) => {
283283
</h4>
284284
<Trans>
285285
If a new tab did not open, please {' '}
286-
<a href={'/checkout/' + eventId + '/' + productMutation.data?.data.short_id + '/details'}
286+
<a href={'/checkout/' + eventId + '/' + productMutation.data?.data.short_id + '/details' + '?session_identifier=' + productMutation.data?.data.session_identifier}
287287
target={'_blank'} rel={'noopener noreferrer'}>
288288
<b>{t`click here`}</b>.
289289
</a>

0 commit comments

Comments
 (0)