HashedCustomer is now no longer necessary
This commit is contained in:
@@ -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(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user