ui improvements

This commit is contained in:
2025-09-01 20:17:08 +02:00
parent daf4450f7a
commit 6e2f91d2c0
30 changed files with 1822 additions and 224 deletions

View File

@@ -67,7 +67,7 @@ class RecipientsController extends ChangeNotifier {
try {
List<dynamic> response = await http.get(
'/recipients/search?${buildQueryParameters(params ?? {})}',
'/public/recipients/search?${buildQueryParameters(params ?? {})}',
);
model.recipients.clear();
model.recipients.addAll(response.map((e) => Recipient.fromJson(e)));