diff --git a/app/src/lib/stores/app-store.ts b/app/src/lib/stores/app-store.ts index d3f572b326..33c93a5834 100644 --- a/app/src/lib/stores/app-store.ts +++ b/app/src/lib/stores/app-store.ts @@ -4151,7 +4151,6 @@ export class AppStore extends TypedBaseStore { await fastForwardBranches(repository, eligibleBranches) } catch (e) { log.error('Branch fast-forwarding failed', e) - sendNonFatalException('fastForwardBranches', e) } } diff --git a/app/src/ui/move-to-applications-folder.tsx b/app/src/ui/move-to-applications-folder.tsx index 6c676239f8..5cb6d5366e 100644 --- a/app/src/ui/move-to-applications-folder.tsx +++ b/app/src/ui/move-to-applications-folder.tsx @@ -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) } }