Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszMudita committed Oct 10, 2024
1 parent 6d4994e commit 48baf95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ const startFlashingProcess = async (
await deviceFlash.execute(device, imageFilePath, scriptFilePath)

dispatch(setFlashingProcessState(FlashingProcessState.Restarting))
// AUTO DISABLED - fix me if you like :)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
throw new Error(`Flash process failed with error: ${error}`)
}
Expand Down
4 changes: 2 additions & 2 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 @@ -5,10 +5,10 @@

import React, { useState } from "react"
import { FunctionComponent } from "Core/core/types/function-component.interface"
import styled, { ThemeProps, ThemeProvider } from "styled-components"
import styled, { ThemeProvider } from "styled-components"
import { defineMessages } from "react-intl"
import { intl, textFormatters } from "Core/__deprecated__/renderer/utils/intl"
import { GenericThemeProvider, Theme } from "generic-view/theme"
import { GenericThemeProvider } from "generic-view/theme"
import { H3 } from "../../../../../generic-view/ui/src/lib/texts/headers"
import { P3 } from "../../../../../generic-view/ui/src/lib/texts/paragraphs"
import { IconType } from "Core/__deprecated__/renderer/components/core/icon/icon-type"
Expand Down

0 comments on commit 48baf95

Please sign in to comment.