Skip to content

Commit 8af7a00

Browse files
committed
style: format
1 parent 3820e66 commit 8af7a00

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/src/rbac/permissions.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ abstract class Permissions {
4444
// Allows deleting the authenticated user's own account
4545
static const String userDeleteOwned = 'user.delete_owned';
4646

47-
4847
// Allows updating any user's profile (admin-only).
4948
// This is distinct from `userUpdateOwned`, which allows a user to update
5049
// their own record.

lib/src/registry/data_operation_registry.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ class DataOperationRegistry {
304304
);
305305
// The validation passed, so we can now safely pass the full User
306306
// object from the request to the repository, honoring the contract.
307-
return await context.read<DataRepository<User>>().update(
307+
return context.read<DataRepository<User>>().update(
308308
id: id,
309309
item: requestedUpdateUser,
310310
userId: uid,

0 commit comments

Comments
 (0)