Skip to content

Commit

Permalink
Merge pull request #10899 from coder1706/main
Browse files Browse the repository at this point in the history
fix generic ErrorLoader
  • Loading branch information
murdos authored Sep 18, 2024
2 parents ccb75e3 + 2b004e6 commit 000988c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export abstract class Loader<T> {
}

static error<T>(error: Error): Loader<T> {
return new ErrorLoader(error);
return new ErrorLoader<T>(error);
}

get isLoading(): boolean {
Expand Down

0 comments on commit 000988c

Please sign in to comment.