Skip to content

Commit

Permalink
fix: rm comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsiemens committed Nov 25, 2024
1 parent d60387a commit 0aea657
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ describe('When testing CompositeUserPreferencesService', () => {
)

// assert
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
Object.entries(actualScopedUserPreferences).forEach(([preferenceId, actualPreference]) => {
const definition = definitions[preferenceId as TestUserPreferenceId]
const expectedScopedUserPreferences = { optedIn: definition?.isOptedInByDefault, data: definition?.defaultData }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export class CompositeUserPreferencesService<TPreferenceIds extends PropertyKey>
currentScope: UserPreferenceScope,
definitions: UserPreferenceDefinitions<TPreferenceIds>,
): CompositeUserPreferences<TPreferenceIds> {
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
const entriesByIdAndUserPreference = Object.entries(definitions).map<[TPreferenceIds, UserPreference]>(
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
Expand Down

0 comments on commit 0aea657

Please sign in to comment.