File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
web/src/pages/Cases/CaseDetails/MaintenanceButtons Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ import { wrapWithToast } from "utils/wrapWithToast";
12
12
13
13
import { isUndefined } from "src/utils" ;
14
14
15
- import { IBaseMaintenaceButton } from "." ;
15
+ import { IBaseMaintenanceButton } from "." ;
16
16
17
17
const StyledButton = styled ( Button ) `
18
18
width: 100%;
19
19
` ;
20
20
21
- interface IDistributeRewards extends IBaseMaintenaceButton {
21
+ interface IDistributeRewards extends IBaseMaintenanceButton {
22
22
numberOfVotes ?: string ;
23
23
roundIndex ?: string ;
24
24
}
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ import { wrapWithToast } from "utils/wrapWithToast";
10
10
11
11
import { isUndefined } from "src/utils" ;
12
12
13
- import { IBaseMaintenaceButton } from "." ;
13
+ import { IBaseMaintenanceButton } from "." ;
14
14
15
15
const StyledButton = styled ( Button ) `
16
16
width: 100%;
17
17
` ;
18
18
19
- interface IDrawButton extends IBaseMaintenaceButton {
19
+ interface IDrawButton extends IBaseMaintenanceButton {
20
20
numberOfVotes ?: string ;
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ import { wrapWithToast } from "utils/wrapWithToast";
10
10
11
11
import { isUndefined } from "src/utils" ;
12
12
13
- import { IBaseMaintenaceButton } from "." ;
13
+ import { IBaseMaintenanceButton } from "." ;
14
14
15
15
const StyledButton = styled ( Button ) `
16
16
width: 100%;
17
17
` ;
18
18
19
- type IExecuteRulingButton = IBaseMaintenaceButton ;
19
+ type IExecuteRulingButton = IBaseMaintenanceButton ;
20
20
21
21
const ExecuteRulingButton : React . FC < IExecuteRulingButton > = ( { id, setIsOpen } ) => {
22
22
const [ isSending , setIsSending ] = useState ( false ) ;
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ import { wrapWithToast } from "utils/wrapWithToast";
10
10
11
11
import { isUndefined } from "src/utils" ;
12
12
13
- import { IBaseMaintenaceButton } from "." ;
13
+ import { IBaseMaintenanceButton } from "." ;
14
14
15
15
const StyledButton = styled ( Button ) `
16
16
width: 100%;
17
17
` ;
18
18
19
- type IPassPeriodButton = IBaseMaintenaceButton ;
19
+ type IPassPeriodButton = IBaseMaintenanceButton ;
20
20
21
21
const PassPeriodButton : React . FC < IPassPeriodButton > = ( { id, setIsOpen } ) => {
22
22
const [ isSending , setIsSending ] = useState ( false ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const PopupContainer = styled.div`
45
45
transform: translate(-100%, 100%);
46
46
` ;
47
47
48
- export interface IBaseMaintenaceButton {
48
+ export interface IBaseMaintenanceButton {
49
49
setIsOpen : ( open : boolean ) => void ;
50
50
id ?: string ;
51
51
}
You can’t perform that action at this time.
0 commit comments