Skip to content

Commit 8d56e48

Browse files
PROD-1024 #comment fix lint issues #time 5m
1 parent a3f0bbb commit 8d56e48

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

src/header/tool-selectors/tool-selectors-wide/tool-selector-wide/ToolSelectorWide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const ToolSelectorWide: FC<ToolSelectorWideProps> = (props: ToolSelectorWideProp
2323
<Link
2424
className='large-tab'
2525
tabIndex={-1}
26-
to={route}
26+
to={route}
2727
>
2828
{title}
2929
</Link>

src/lib/button/index.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
export { default as Button } from './Button'
2-
export type {
3-
ButtonSize,
4-
ButtonStyle,
5-
ButtonType
6-
} from './Button'
2+
export
3+
// tslint:disable-next-line: no-unused-expression
4+
type { ButtonSize } from './Button'
5+
export
6+
// tslint:disable-next-line: no-unused-expression
7+
type { ButtonStyle } from './Button'
8+
export
9+
// tslint:disable-next-line: no-unused-expression
10+
type { ButtonType } from './Button'

src/lib/form/form-input/input-textarea/InputTextarea.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { FormFieldWrapper } from '../form-field-wrapper'
44

55
import styles from './InputTextarea.module.scss'
66

7-
87
interface InputTextareaProps {
98
readonly dirty?: boolean
109
readonly disabled?: boolean
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export { patchAsync as userPatchAsync } from './user-xhr.store'
2-
export type { UserPatchRequest } from './user-xhr.store'
2+
export
3+
// tslint:disable-next-line: no-unused-expression
4+
type { UserPatchRequest } from './user-xhr.store'

0 commit comments

Comments
 (0)