Skip to content

Commit

Permalink
Fixed errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszMudita committed Oct 10, 2024
1 parent 5b9697d commit f5e1c7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* For licensing, see https://github.com/mudita/mudita-center/blob/master/LICENSE.md
*/

import path from "path"
import { Dispatch, ReduxRootState } from "Core/__deprecated__/renderer/store"
import { FlashingProcessState, SupportedPlatform, Product } from "../constants"
import { setFlashingProcessState } from "../actions/set-flashing-process-state.action"
Expand Down
10 changes: 6 additions & 4 deletions libs/msc-flash/msc-flash-harmony/src/lib/ui/recovery-mode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,12 @@ const RecoveryModeUI: FunctionComponent = () => {
<ButtonPrimary
config={{
text: intl.formatMessage(messages.button),
action: {
type: "custom",
callback: onStartRecovery,
},
actions: [
{
type: "custom",
callback: onStartRecovery,
},
],
disabled: !isConfirmed,
}}
/>
Expand Down

0 comments on commit f5e1c7e

Please sign in to comment.