@autobusal/order-confirm 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/OrderConfirm.tsx +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this package are documented here. This project follows
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/) and [Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [1.1.1] - 2026-07-25
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- The "Connect Telegram" addon widget now also renders on `reserved` order
|
|
11
|
+
confirmations, not just `purchased` ones - a reserve-then-pay-later
|
|
12
|
+
booking has no other page offering the binding link, so it was a dead
|
|
13
|
+
end for the Telegram addon on that path.
|
|
14
|
+
|
|
6
15
|
## [1.1.0] - 2026-07-25
|
|
7
16
|
|
|
8
17
|
### Added
|
package/OrderConfirm.tsx
CHANGED
|
@@ -63,7 +63,7 @@ const OrderConfirm = ({ t }: Props): (JSX.Element | null) => {
|
|
|
63
63
|
|
|
64
64
|
<>
|
|
65
65
|
{ (type === 'cancelled' && message !== '') && <Reason message={ message } t={ t } /> }
|
|
66
|
-
{ (type === 'purchased' && hash) && <Telegram hash={ hash } t={ t } /> }
|
|
66
|
+
{ ((type === 'purchased' || type === 'reserved') && hash) && <Telegram hash={ hash } t={ t } /> }
|
|
67
67
|
</>
|
|
68
68
|
|
|
69
69
|
<Actions>
|