Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
abeddow91 committed May 8, 2024
1 parent c54ec0d commit 62befe1
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,27 @@ export const onwardJourneys: ABTest = {
variants: [
{
id: 'control',
test: (): void => {},
test: (): void => {
/* no-op */
},
},
{
id: 'variant-1',
test: (): void => {},
test: (): void => {
/* no-op */
},
},
{
id: 'variant-2',
test: (): void => {},
test: (): void => {
/* no-op */
},
},
{
id: 'variant-3',
test: (): void => {},
test: (): void => {
/* no-op */
},
},
],
successMeasure: '',
Expand Down

0 comments on commit 62befe1

Please sign in to comment.