Remove moveApplication and fastForwardBranches non-fatal errors

This commit is contained in:
Sergio Padrino 2021-10-06 11:36:12 +02:00
parent f6949b28f8
commit b8f60f99ac
2 changed files with 0 additions and 3 deletions

View file

@ -4151,7 +4151,6 @@ export class AppStore extends TypedBaseStore<IAppState> {
await fastForwardBranches(repository, eligibleBranches)
} catch (e) {
log.error('Branch fast-forwarding failed', e)
sendNonFatalException('fastForwardBranches', e)
}
}

View file

@ -1,5 +1,4 @@
import * as React from 'react'
import { sendNonFatalException } from '../lib/helpers/non-fatal-exception'
import {
Dialog,
DialogContent,
@ -104,7 +103,6 @@ export class MoveToApplicationsFolder extends React.Component<
try {
this.props.dispatcher.moveToApplicationsFolder()
} catch (error) {
sendNonFatalException('moveApplication', error)
this.props.dispatcher.postError(error)
}
}