Skip to content

Commit

Permalink
chore(server): fix lint error from #644
Browse files Browse the repository at this point in the history
  • Loading branch information
pyshx committed Aug 28, 2023
1 parent 0876ae2 commit 383ef9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions server/internal/adapter/gql/gqlmodel/convert_scene.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ func ToStyle(v *scene.Style) *Style {
}

func ToStyleValue(p JSON) *scene.StyleValue {
sv := make(scene.StyleValue)
sv := make(scene.StyleValue)

for key, value := range p {
sv[key] = value
}
for key, value := range p {
sv[key] = value
}

return &sv
return &sv
}

0 comments on commit 383ef9b

Please sign in to comment.