File tree Expand file tree Collapse file tree
packages/mint-components/src/components/tax-and-cash/sqm-indirect-tax-form Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ export const IndirectTaxFormView = (props: IndirectTaxFormViewProps) => {
271271 ) }
272272 </ sqm-form-message >
273273 ) }
274- { states . isPartner && (
274+ { /* { states.isPartner && (
275275 <sqm-form-message loading={states.loading} type="info">
276276 <p part="alert-title">{text.isPartnerAlertHeader}</p>
277277 {intl.formatMessage(
@@ -291,7 +291,7 @@ export const IndirectTaxFormView = (props: IndirectTaxFormViewProps) => {
291291 }
292292 )}
293293 </sqm-form-message>
294- ) }
294+ )} */ }
295295 < div >
296296 < h4 > { text . indirectTaxDetails } </ h4 >
297297 </ div >
@@ -309,7 +309,7 @@ export const IndirectTaxFormView = (props: IndirectTaxFormViewProps) => {
309309 id = "notRegistered"
310310 checked = { formState . checked === "notRegistered" }
311311 onInput = { ( ) => callbacks . onChange ( "notRegistered" ) }
312- disabled = { states . disabled || states . isPartner }
312+ disabled = { states . disabled }
313313 >
314314 < div class = { classes . RadioContent } >
315315 { text . notRegistered }
@@ -325,7 +325,7 @@ export const IndirectTaxFormView = (props: IndirectTaxFormViewProps) => {
325325 id = "otherRegion"
326326 checked = { formState . checked === "otherRegion" }
327327 onInput = { ( ) => callbacks . onChange ( "otherRegion" ) }
328- disabled = { states . disabled || states . isPartner }
328+ disabled = { states . disabled }
329329 >
330330 < div class = { classes . RadioContent } >
331331 { text . otherRegion }
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ export class IndirectTaxForm {
254254 < OtherRegionSlotView
255255 states = { {
256256 hide : props . states . formState . checked !== "otherRegion" ,
257- disabled : props . states . disabled || props . states . isPartner ,
257+ disabled : props . states . disabled ,
258258 formState : props . slotProps . formState ,
259259 loading : props . states . loading ,
260260 isPartner : props . states . isPartner ,
You can’t perform that action at this time.
0 commit comments