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 authored and AlexRuiz7 committed May 5, 2023
1 parent 42c90ed commit 094cd7e
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 094cd7e

Please sign in to comment.