diff --git a/client/src/components/onboarding/OrganisationAddress.vue b/client/src/components/onboarding/OrganisationAddress.vue
index c7539650..442b0eb7 100644
--- a/client/src/components/onboarding/OrganisationAddress.vue
+++ b/client/src/components/onboarding/OrganisationAddress.vue
@@ -1,5 +1,5 @@
diff --git a/client/src/components/onboarding/PersonalAddress.vue b/client/src/components/onboarding/PersonalAddress.vue
index 14906d75..2538daaa 100644
--- a/client/src/components/onboarding/PersonalAddress.vue
+++ b/client/src/components/onboarding/PersonalAddress.vue
@@ -1,5 +1,5 @@
diff --git a/client/src/pages/onboarding/vv/CheckoutAddress.vue b/client/src/pages/onboarding/vv/CheckoutAddress.vue
index 504ed607..c470c7ec 100644
--- a/client/src/pages/onboarding/vv/CheckoutAddress.vue
+++ b/client/src/pages/onboarding/vv/CheckoutAddress.vue
@@ -49,9 +49,6 @@ const billingAddressData: Ref = fetchBillingAddress.d
watch(billingAddressData, (newVal) => {
if (newVal) {
- console.log("New billing address data: ", newVal);
- // TODO: we get the billing address from the shop api but updating the form does not work
- // TODO: I don't understand how this was supposed to work in the first place -> how do we do this? :)
address.value = {
firstName: newVal.first_name,
lastName: newVal.last_name,
diff --git a/server/config/urls.py b/server/config/urls.py
index 5bdace7c..37e0c4e6 100644
--- a/server/config/urls.py
+++ b/server/config/urls.py
@@ -10,9 +10,6 @@ from django.views import defaults as default_views
from django.views.decorators.csrf import csrf_exempt
from django_ratelimit.exceptions import Ratelimited
from graphene_django.views import GraphQLView
-from wagtail import urls as wagtail_urls
-from wagtail.admin import urls as wagtailadmin_urls
-from wagtail.documents import urls as wagtaildocs_urls
from vbv_lernwelt.api.user import list_organisations, me_user_view
from vbv_lernwelt.assignment.views import request_assignment_completion_status
@@ -58,6 +55,9 @@ from vbv_lernwelt.importer.views import (
)
from vbv_lernwelt.notify.views import email_notification_settings
from vbv_lernwelt.shop.views import get_billing_address, update_billing_address
+from wagtail import urls as wagtail_urls
+from wagtail.admin import urls as wagtailadmin_urls
+from wagtail.documents import urls as wagtaildocs_urls
class SignedIntConverter(IntConverter):
diff --git a/server/vbv_lernwelt/shop/migrations/0002_auto_20231114_1926.py b/server/vbv_lernwelt/shop/migrations/0002_auto_20231114_1926.py
index 2660f3b0..34c4a0de 100644
--- a/server/vbv_lernwelt/shop/migrations/0002_auto_20231114_1926.py
+++ b/server/vbv_lernwelt/shop/migrations/0002_auto_20231114_1926.py
@@ -4,30 +4,29 @@ from django.db import migrations
class Migration(migrations.Migration):
-
dependencies = [
- ('shop', '0001_initial'),
+ ("shop", "0001_initial"),
]
operations = [
migrations.RenameField(
- model_name='billingaddress',
- old_name='company_street_address',
- new_name='company_street',
+ model_name="billingaddress",
+ old_name="company_street_address",
+ new_name="company_street",
),
migrations.RenameField(
- model_name='billingaddress',
- old_name='company_street_number_address',
- new_name='company_street_number',
+ model_name="billingaddress",
+ old_name="company_street_number_address",
+ new_name="company_street_number",
),
migrations.RenameField(
- model_name='billingaddress',
- old_name='street_address',
- new_name='street',
+ model_name="billingaddress",
+ old_name="street_address",
+ new_name="street",
),
migrations.RenameField(
- model_name='billingaddress',
- old_name='street_number_address',
- new_name='street_number',
+ model_name="billingaddress",
+ old_name="street_number_address",
+ new_name="street_number",
),
]