ember-native-class-codemod icon indicating copy to clipboard operation
ember-native-class-codemod copied to clipboard

`queryParams` needs to be an array

Open dwickern opened this issue 4 years ago • 0 comments

A small correction to #20:

const a = Foo.extend({
  queryParams: { ... }
})

need to be transformed to

class A extends Foo {
  queryParams = [{ ... }]
}

dwickern avatar Jan 04 '21 20:01 dwickern