Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gotokatsuya committed Jul 15, 2021
1 parent b43b713 commit 66fbdad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/ab-testing/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ export class Experiments {
userProfile: { [s: string]: string };
matchedCohorts: { [experimentName: string]: string };

constructor(config: ABTestingConfig, userId: number | string, userProfile: { [s: string]: string }) {
constructor(
config: ABTestingConfig,
userId: number | string,
userProfile: { [s: string]: string }
) {
this.config = {};
this.userId = userId;
this.userProfile = userProfile;
Expand Down

0 comments on commit 66fbdad

Please sign in to comment.