Skip to content

Commit

Permalink
Merge pull request #656 from NullVoxPopuli/fix-organize-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gitKrystan authored Nov 30, 2023
2 parents 20a34cc + 75b0326 commit 60ebce7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ describe('Language Server: Organize Imports', () => {
class List<T> extends Component {
<template>
<MaybeComponent />
<MaybeComponent @arg="hi" />
<ol>
{{#each-in (hash a=1 b='hi') as |key value|}}
<li>{{key}}: {{value}}</li>
Expand All @@ -131,7 +131,7 @@ describe('Language Server: Organize Imports', () => {
import { ComponentLike, ModifierLike, HelperLike } from '@glint/template';
import { TOC } from '@ember/component/template-only';
const MaybeComponent: undefined as TOC<{ Args: { arg: string } }> | undefined;
const MaybeComponent = undefined as TOC<{ Args: { arg: string } }> | undefined;
declare const CanvasThing: ComponentLike<{ Args: { str: string }; Element: HTMLCanvasElement }>;
`,
});
Expand Down

0 comments on commit 60ebce7

Please sign in to comment.