Skip to content

Commit

Permalink
Merge branch 'CP-3027' of https://github.com/mudita/mudita-center int…
Browse files Browse the repository at this point in the history
…o CP-2914
  • Loading branch information
MateuszMudita committed Oct 10, 2024
2 parents 48baf95 + 49f3aa3 commit 5b9697d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ const registerPureOsDownloadListener = (
async ({ url, fileName }: { url: string; fileName: string }) => {
const { osDownloadLocation } = await getAppSettingsMain()

console.log("VERY IMPORTANT INFO!!!", osDownloadLocation)
console.log("VERY IMPORTANT INFO URL!!!", url)
console.log("VERY IMPORTANT INFO NAME!!!", fileName)

return registerDownloadListener({
url,
fileName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ export const HarmonyOverview: FunctionComponent<HarmonyOverviewProps> = ({
const downloadReleases = (devReleases?: OsRelease[]) => {
const releasesToDownload = devReleases ?? availableReleasesForUpdate

console.log("Releasy: ", devReleases)
console.log("Releasy 2: ", availableReleasesForUpdate)

releasesToDownload &&
releasesToDownload.length > 0 &&
downloadUpdates(releasesToDownload)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ type Props = PureOverviewProps &
HarmonyOverviewProps & { deviceType: DeviceType | null }

const Screen: FunctionComponent<Props> = (props) => {
console.log("Propeczki", props)
switch (props.deviceType) {
case DeviceType.MuditaPure:
return <PureOverview {...props} />
Expand Down

0 comments on commit 5b9697d

Please sign in to comment.