Skip to content

Commit e23a03b

Browse files
authored
[BT-5143] Fix interpolated string in seed data (#3)
1 parent 2b2f9a0 commit e23a03b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample-app/Services/SeedService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static void Init(Client client)
2424
{name: 'books'},
2525
{name: 'movies'}
2626
].map(c => {
27-
Category.byName(c.name).first() ?? Category.create({ name: c.name, description: 'Bargain #{c.name}!' })
27+
Category.byName(c.name).first() ?? Category.create({ name: c.name, description: "Bargain #{c.name}!" })
2828
})
2929
3030
// Force empty return

0 commit comments

Comments
 (0)