Skip to content

Commit

Permalink
refactor(forms): sonar fix - remove redundant type intersection
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBerliner committed Sep 24, 2024
1 parent 10d25a5 commit d338a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/tests/form-fields/form-fields.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { regressionTest } from '@utils/test';

async function changeState(
page: Page,
state: 'info' | 'warning' | 'valid' | 'invalid' | (string & {})
state: 'info' | 'warning' | 'valid' | 'invalid' | string
) {
return page.evaluate(
([state]) => {
Expand Down

0 comments on commit d338a11

Please sign in to comment.