Skip to content

Commit

Permalink
Remove params declaration to fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Machi3mfl committed May 8, 2023
1 parent bb1d4bc commit c2f1ae2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export interface InjectedMetadataParams {
export class InjectedMetadataService {
private state: InjectedMetadataParams['injectedMetadata'];

constructor(private readonly params: InjectedMetadataParams) {
constructor(params: InjectedMetadataParams) {
this.state = deepFreeze(params.injectedMetadata) as InjectedMetadataParams['injectedMetadata'];
}

Expand Down

0 comments on commit c2f1ae2

Please sign in to comment.