Skip to content

Commit 80e87f9

Browse files
committed
style: format
1 parent fe66da2 commit 80e87f9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/src/database/migrations/20251108103300_add_push_notification_config_to_remote_config.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class AddPushNotificationConfigToRemoteConfig extends Migration {
3030
final remoteConfigId = ObjectId.fromHexString(kRemoteConfigId);
3131

3232
// Default structure for the push notification configuration.
33-
final pushNotificationConfig = remoteConfigsFixturesData.first.pushNotificationConfig;
33+
final pushNotificationConfig =
34+
remoteConfigsFixturesData.first.pushNotificationConfig;
3435

3536
// Use $set to add the field only if it doesn't exist.
3637
// This is an idempotent operation.

lib/src/services/default_user_preference_limit_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class DefaultUserPreferenceLimitService implements UserPreferenceLimitService {
179179
'Checking notification subscription limits for user ${user.id}...',
180180
);
181181
final pushConfig = remoteConfig.pushNotificationConfig;
182-
182+
183183
// Iterate through each possible delivery type defined in the enum.
184184
for (final deliveryType
185185
in PushNotificationSubscriptionDeliveryType.values) {

0 commit comments

Comments
 (0)