-
Notifications
You must be signed in to change notification settings - Fork 112
Feat/manager 20320 #20577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feat/pci-project
Are you sure you want to change the base?
Feat/manager 20320 #20577
Conversation
6077198 to
4bdd865
Compare
4c8810a to
c29d09d
Compare
c29d09d to
1008da0
Compare
6f5bf13 to
0c4974f
Compare
32dbbc1 to
a411c17
Compare
91817bd to
9e5f05d
Compare
4f8313d to
cf9d3e2
Compare
cf9d3e2 to
a0995be
Compare
|
@copilot Could you find any breaking change (like different behavior in |
|
@FabienHenon I've opened a new pull request, #20700, to work on those changes. Once the pull request is ready, I'll request review from you. |
a0995be to
f298aaf
Compare
| export const useCartServiceOption = (projectId?: string) => | ||
| useQuery({ | ||
| queryKey: getCartServiceOptionQueryKey(projectId as string), | ||
| queryKey: ['/order/cartServiceOption/cloud', projectId], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you hard coded the query key, so we don't use the getCartServiceOptionQueryKey function anymore ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, indeed
| ...prev, | ||
| isHdsChecked: !!hdsItem, | ||
| })); | ||
| if (hdsItem && form.isHdsChecked !== !!hdsItem) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a new instruction on condition ! we should pay attention to that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reverted
| const path = promotionVoucher | ||
| ? `../../updating/${orderId}/${DISCOVERY_PROMOTION_VOUCHER}` | ||
| : `../../updating/${orderId}`; | ||
| ? `../updating/${orderId}/${DISCOVERY_PROMOTION_VOUCHER}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this safe ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, it's a regression. I reverted
| handleActivateProject(); | ||
| void handleActivateProject(); | ||
| } else if (isCreditPayment && creditPaymentAmount) { | ||
| void handleCreditPayment(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a regression here, please check to fix bellow
f80ca90
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed it as you suggested
ref: #MANAGER-20320 Signed-off-by: Fabien Henon <[email protected]>
f298aaf to
0c243d5
Compare
Description
Ticket Reference: #...
Additional Information