HashedCustomer is now no longer necessary

This commit is contained in:
Jonas Linter
2025-12-03 11:10:27 +01:00
parent 3193ceac63
commit 1bdef3ee11
5 changed files with 56 additions and 50 deletions

View File

@@ -59,7 +59,7 @@ async def load_test_data_from_db():
result = []
for reservation, customer in reservations_with_customers:
# Get hashed customer data
hashed_customer = await customer_service.get_hashed_customer(customer.id)
hashed_customer = await customer_service.get_customer(customer.id)
result.append(
{