Skip to content

Commit

Permalink
Removed params declaration to fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Machi3mfl committed May 3, 2023
1 parent a190c31 commit e296064
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 e296064

Please sign in to comment.