Skip to content

Commit

Permalink
Remove unused imports and update typing. Type changes for StudioCodeL…
Browse files Browse the repository at this point in the history
…istEditorRow.tsx should likely be reverted. To be determined during review.
  • Loading branch information
Konrad-Simso committed Oct 29, 2024
1 parent 6db7a5e commit 063c1f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function StudioCodeListEditorRow({
<StudioInputTable.Row>
<TextfieldCell
label={texts.itemValue(number)}
value={item.value}
value={item.value as string}
onChange={handleValueChange}
/>
<TextfieldCell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import { ServicesContextProps, ServicesContextProvider } from 'app-shared/contex
import { createQueryClientMock } from 'app-shared/mocks/queryClientMock';
import userEvent from '@testing-library/user-event';
import { queriesMock } from 'app-shared/mocks/queriesMock';
import { MemoryRouter } from 'react-router-dom';
import { SettingsModalContextProvider } from 'app-development/contexts/SettingsModalContext';
import { PreviewContext, type PreviewContextProps } from 'app-development/contexts/PreviewContext';

const mockComponent: FormComponent<ComponentType.RadioButtons> = {
Expand Down

0 comments on commit 063c1f5

Please sign in to comment.