I noticed that Glimmer components don’t receive service injections from the inject
method on the ApplicationInstance
like in instance initializers. For example, session
will be undefined in a Glimmer component with the following in an instance initializer:
instance.inject('component', 'session', 'service:session')
Is this because @glimmer/component
doesn’t extend from EmberObject
?