fix checkout

This commit is contained in:
shaulascr
2025-05-14 04:56:31 +07:00
parent 648385835c
commit ce8a6b24b4
3 changed files with 3 additions and 6 deletions

View File

@ -38,9 +38,6 @@
<activity
android:name=".ui.order.review.CreateReviewActivity"
android:exported="false" />
<activity
android:name=".ui.cart.MainActivity"
android:exported="false" />
<activity
android:name=".ui.profile.mystore.profile.EditStoreProfileActivity"
android:exported="false" />

View File

@ -192,7 +192,7 @@ class CheckoutActivity : AppCompatActivity() {
viewModel.setPaymentMethod(payment.id)
}
binding.rvPaymentMethods.apply {
binding.rvPaymentInfo.apply {
layoutManager = LinearLayoutManager(this@CheckoutActivity)
adapter = paymentAdapter
}
@ -219,7 +219,7 @@ class CheckoutActivity : AppCompatActivity() {
}
}
binding.rvPaymentMethods.apply {
binding.rvPaymentInfo.apply {
layoutManager = LinearLayoutManager(this@CheckoutActivity)
adapter = testAdapter
}