Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
gossi committed Jan 18, 2025
1 parent 1a155e3 commit 8e6bc15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions web/app/domain/core/assistants/dance-mix/dance-mix.gts
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ class Game extends Component<DanceMixSignature> {
<Button
@importance="subtle"
@disabled={{this.machine.state.matches "playing"}}
{{! @glint-ignore }}
@push={{fn this.machine.send "choosePlaylist"}}
>
Playlist wechseln
Expand Down
4 changes: 4 additions & 0 deletions web/app/domain/core/games/bingo/bingo.gts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ const Tile: TOC<TileSignature> = <template>

class Bingo {
@tracked principles: Awfulpractice[];
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
@tracked selection: Set<Awfulpractice> = new TrackedSet();
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
@tracked winner: Set<Awfulpractice> = new TrackedSet();
@tracked finished: boolean = false;

Expand Down

0 comments on commit 8e6bc15

Please sign in to comment.