Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #331 from glimmerjs/fix-invalid-imports
Browse files Browse the repository at this point in the history
fix invalid imports
  • Loading branch information
rwjblue authored Feb 26, 2021
2 parents e621b66 + ab8c0ff commit a0bf50e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import BaseComponentManager, {
} from './base-component-manager';

import GlimmerComponent, { Constructor } from './component';
import { setDestroyed, setDestroying } from './destroyables';
import * as destroyables from './destroyables';
const { setDestroyed, setDestroying } = destroyables;

const CAPABILITIES = gte('3.13.0-beta.1')
? capabilities('3.13', {
Expand Down

0 comments on commit a0bf50e

Please sign in to comment.