Skip to content

Commit e52231a

Browse files
committed
fix(database): remove extra comma in database seeding service
- Corrected a syntax error in the DatabaseSeedingService class - Removed the extraneous comma in the content creation process - This change ensures proper functionality when running the app and prevents potential errors during database seeding
1 parent b016f11 commit e52231a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/services/database_seeding_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ class DatabaseSeedingService {
266266
createdAt: DateTime.now(),
267267
updatedAt: DateTime.now(),
268268
status: ContentStatus.active,
269-
),,
269+
),
270270
feedPreferences: const FeedDisplayPreferences(
271271
headlineDensity: HeadlineDensity.standard,
272272
headlineImageStyle: HeadlineImageStyle.smallThumbnail,

0 commit comments

Comments
 (0)