This commit is contained in:
Martin Quarda 2024-10-15 07:54:47 +02:00
parent 6ae1d3740c
commit b086f576a8
2 changed files with 8 additions and 4 deletions

View File

@ -385,7 +385,9 @@ def select_delivery(request):
def delivery(request):
try:
if request.user.cart.address:
return HttpResponse('"'+request.user.cart.address+'"', status=200, content_type='application/json')
return HttpResponse("undefined", status=200, content_type='application/json')
except AttributeError:
return HttpResponse("undefined", status=200, content_type='application/json')

View File

@ -225,7 +225,9 @@ class Main extends Component {
}
}
selectDelivery = () => {
Packeta.Widget.pick("8599115769fd895b", this.selectDeliveryCallback.bind(this))
Packeta.Widget.pick("8599115769fd895b", this.selectDeliveryCallback.bind(this), {
language: "cs",
})
}
togglefaq(){
this.setState({faq: !this.state.faq});