Skip to content

Commit a51e796

Browse files
committed
chore: ran mise run format
1 parent 6153a96 commit a51e796

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gql/resolver_modpacks.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,12 @@ func (r *mutationResolver) UpdateModpackCompatibility(ctx context.Context, modpa
277277
mods, _ := db.From(ctx).Modpack.Query().
278278
Where(modpack.ID(modpackID)).QueryModpackMods().All(ctx)
279279
updateModpack := generated.UpdateModpack{
280-
Mods: []*generated.ModpackModInput{},
280+
Mods: []*generated.ModpackModInput{},
281281
Compatibility: &compatibility,
282282
}
283283
for _, mod := range mods {
284284
modInput := generated.ModpackModInput{
285-
ModID: mod.ModID,
285+
ModID: mod.ModID,
286286
VersionConstraint: mod.VersionConstraint,
287287
}
288288
updateModpack.Mods = append(updateModpack.Mods, &modInput)

0 commit comments

Comments
 (0)